Helm Charts server for the OICR Software Engineering team, published as OCI artifacts to GitHub Container Registry.
Note: GitHub displays a Docker pull command on the package page — ignore it. These are Helm charts, not container images. See Using a chart below.
Chart source lives on main. Jenkins CI packages and publishes charts to GHCR automatically on every push.
To add or update a chart: push changes to main and Jenkins handles the rest.
| Chart | Description |
|---|---|
cron-job |
Generic chart to run a cron job |
kafka-operator-resources |
Deploy Kafka resources for Strimzi Kafka operator |
stateless-svc |
Generic chart for Kubernetes stateless services |
valkey-cluster |
Deploy a Valkey cluster using the hyperspike.io operator |
Helm CLI:
helm install <release-name> oci://ghcr.io/oicr-softeng/helm-charts/<chart-name> --version <version>Terraform (hashicorp/helm provider):
resource "helm_release" "example" {
repository = "oci://ghcr.io/oicr-softeng/helm-charts"
chart = "<chart-name>"
version = "<version>"
namespace = "<namespace>"
# ...
}