WebServer Deployment
Deploy HTTP WebServer using HELM
Check the Existing Release of Helm
helm ls
will show you a list of all deployed releases.
Install the HTTP Web Server
cd httpd
Ensure you are inside the
httpd
folder
helm install http-app .
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?