Skip to content

Commit

Permalink
add OCI & helm repo to README
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoblitt committed May 2, 2024
1 parent b1df2ea commit 154abc2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,32 @@ Note that `gnocpush` does not impose any alert grouping constraints.
## Deployment on Kubernetes
OCI images are available at [ghcr.io/lsst-it/gnocpush](https://github.com/lsst-it/gnocpush/pkgs/container/gnocpush).
A helm chart is available in the `charts` directory and in a helm repository at [https://lsst-it.github.io/gnocpush](https://lsst-it.github.io/gnocpush).

### Helm Chart

Installing via helm from a git repo clone:

```bash
helm upgrade --install \
gnocpush ./charts/gnocpush \
--create-namespace --namespace gnocpush \
-f ./values.yaml
```

Installing from the helm repository:

```bash
helm repo add gnocpush https://lsst-it.github.io/gnocpush
helm repo update
helm upgrade --install \
gnocpush gnocpush/gnocpush \
--create-namespace --namespace gnocpush \
-f ./values.yaml
```

### Debugging a Kubernetes Deployment

```bash
Expand Down

0 comments on commit 154abc2

Please sign in to comment.