diff --git a/README.md b/README.md index 5fa5e00..a9d3c22 100644 --- a/README.md +++ b/README.md @@ -64,13 +64,6 @@ Run the following script to create all Kubernetes objects and start the applicat ``` ./start-app.sh ``` -### Stop the Application - -Run the following script to delete all created Kubernetes objects and stop the application: - -```bash -./stop-app.sh -``` ### View the Application If you are using a LoadBalancer service, you can access the application using the external IP address provided by the service. Run the following command to get the service details: @@ -83,5 +76,16 @@ Open a web browser, enter this sentence and replace with the exter ``` http:// ``` +Another way can also be by using Minikube: +``` +minikube service web-app-service -n my-namespace +``` +### Stop the Application + +Run the following script to delete all created Kubernetes objects and stop the application: + +```bash +./stop-app.sh +``` This is it, your Todo-List is working, enjoy!