From 154abc2ecfd88f24ce0db78fa57e8f48c303695f Mon Sep 17 00:00:00 2001
From: Joshua Hoblitt <josh@hoblitt.com>
Date: Thu, 2 May 2024 14:25:21 -0700
Subject: [PATCH] add OCI & helm repo to README

---
 README.md | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/README.md b/README.md
index f2cc1f7..3040413 100644
--- a/README.md
+++ b/README.md
@@ -129,6 +129,14 @@ 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 \
@@ -136,6 +144,17 @@ helm upgrade --install \
   -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