WebServer Deployment

Deploy HTTP WebServer using HELM

  1. Check the Existing Release of Helm

helm ls

will show you a list of all deployed releases.

  1. Install the HTTP Web Server

cd httpd

Ensure you are inside the httpd folder

helm install http-app .
  1. Verify the release

helm ls

Delete HELM Release

Delete and reinstall the Helm chart at any time, use the helm delete command

helm delete my-todo-app

View the Deleted HELM Releases

helm list --deleted

Last updated

Was this helpful?