jitsi-contrib/jitsi-helm

Jitsi chart not found in repo https://jitsi-contrib.github.io/jitsi-helm/

paunis opened this issue · 3 comments

We want to deploy Jitsi via helm with nested chart. The current chart definition looks like this:

`apiVersion: v2
name: video
description: A Helm chart for Kubernetes for installing Jitsi Meet
type: application
version: 0.1.0
dependencies:

When we run helm dependency build we get this error:

$ helm dependency build Hang tight while we grab the latest from your chart repositories... ...Successfully got an update from the "jitsi" chart repository Update Complete. ⎈Happy Helming!⎈ Error: jitsi chart not found in repo https://jitsi-contrib.github.io/jitsi-helm/

What is wrong here?

Hello @paunis!

The chart's name is jitsi-meet, not jitsi. Try to use name: jitsi-meet in your chart dependencies instead.

Thank you @spijet

It works now.