Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

helm & projectile: how to remove a project from projectile

I have several projects defined, and when I run C-c p p, it will list all of the projects. Now I don't want a project and I have deleted the .projectile file under that project, but it still shows up. How do I delete it?

like image 465
Daniel Wu Avatar asked Dec 25 '14 03:12

Daniel Wu


People also ask

What is the use of helm?

Helm allows software developers to deploy and test an environment in the simplest possible way. Less time is needed to get from development to testing to production. Besides boosting productivity, Helm presents a convenient way for developers to pack and send applications to end users for installation.

How does helm interact with Kubernetes?

Kubernetes Helm Architecture Interacts with Helm client, and translates chart definitions and configuration to Kubernetes API commands. Tiller combines a chart and its configuration to build a release. Tiller is also responsible for upgrading charts, or uninstalling and deleting them from the Kubernetes cluster.

What is the purpose of helm charts?

Helm uses a packaging format called charts. A chart is a collection of files that describe a related set of Kubernetes resources. A single chart might be used to deploy something simple, like a memcached pod, or something complex, like a full web app stack with HTTP servers, databases, caches, and so on.

What is helm API?

Helm is a tool for managing Kubernetes packages called charts. Helm can do the following: Create new charts from scratch. Package charts into chart archive (tgz) files. Interact with chart repositories where charts are stored.


1 Answers

The function projectile-remove-known-project prompts for a project to forget about. projectile-remove-current-project-from-known-projects removes the active project.

Known projects are stored in the file ~/.emacs.d/projectile-bookmarks.eld.

like image 117
Chris Avatar answered Oct 20 '22 16:10

Chris