Skip to content

Repository files navigation

helm-charts

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.

How it works

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.

Available charts

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

Using a chart

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>"
  # ...
}

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Packages

Contributors

Languages