Skip to content

App Registry

helm-me saves every deployment to a local registry at ~/.helm-me/deployments/. This lets you manage apps without passing spec files repeatedly.

app help

List Apps

helm-me app list
πŸ“¦  Deployed apps
┏━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┓
┃    ┃ APP           ┃ NAMESPACE ┃ TYPE    ┃ SPEC             ┃ DEPLOYED AT     ┃
┑━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━┩
β”‚    β”‚ aurora-suite  β”‚ aurora    β”‚ managed β”‚ /home/user/de…   β”‚ 2026-04-10T18:… β”‚
β”‚ β–Έ  β”‚ my-app        β”‚ default   β”‚ managed β”‚ /home/user/de…   β”‚ 2026-04-11T09:… β”‚
β””β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

The β–Έ marker indicates the currently active app.

Set Active App

helm-me app use my-app

Once set, all ops commands target this app without specifying the name:

helm-me ops pods        # uses my-app
helm-me ops logs backend  # uses my-app

Show Active App

helm-me app current
# β–Έ my-app

Delete a Registration

Remove an app from the local registry (does not delete Kubernetes resources):

helm-me app delete old-app