https://github.com/logicmonitor/lmc
Helm plugin for Logicmonitor's LM Container Helm Chart
https://github.com/logicmonitor/lmc
Last synced: 11 months ago
JSON representation
Helm plugin for Logicmonitor's LM Container Helm Chart
- Host: GitHub
- URL: https://github.com/logicmonitor/lmc
- Owner: logicmonitor
- License: mpl-2.0
- Created: 2022-06-29T15:53:04.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-23T07:13:18.000Z (almost 2 years ago)
- Last Synced: 2025-05-22T03:38:19.807Z (about 1 year ago)
- Language: Go
- Size: 38.1 KB
- Stars: 0
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lmc
## Developing plugin
Replace hooks with following in plugin.yaml
```
install: "cd $HELM_PLUGIN_DIR; export PROFILE=LOCAL; export DIST_DIR=${PWD}/dist; export version=`git --git-dir=${PWD}//.git describe --tags --always --dirty=-SNAPSHOT-\\`git --git-dir=$(PWD)/.git rev-parse --short HEAD\\` | tr -d 'v'`; . ./scripts/install.sh"
update: "cd $HELM_PLUGIN_DIR; export PROFILE=LOCAL; export DIST_DIR=${PWD}/dist; export version=`git --git-dir=${PWD}//.git describe --tags --always --dirty=-SNAPSHOT-\\`git --git-dir=$(PWD)/.git rev-parse --short HEAD\\` | tr -d 'v'`; . ./scripts/install.sh"
```
Run `make deploy`