An open API service indexing awesome lists of open source software.

https://github.com/emrahcom/jitsi-helm-case-1


https://github.com/emrahcom/jitsi-helm-case-1

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

## Get repo

Assumed that `helm`, `git`, etc. are already installed.

```bash
git clone https://github.com/emrahcom/jitsi-helm-case-1.git

cd jitsi-helm-case-1
git pull
```

## Dependencies

```bash
helm dependency update
```

## myvalues.yaml

[myvalues.yaml](myvalues.yaml) is created using only the critical values from
the default `values.yaml` of `jitsi-meet` chart and customized according to
requirements.

To show the default `values.yaml`:

```bash
helm show values charts/jitsi-meet-1.5.1.tgz
```

A few lines from the custom [myvalues.yaml](myvalues.yaml):

```yaml
jitsi:
publicURL: "meet.minikube.loc"

web:
replicaCount: 1
image:
repository: jitsi/web
tag: "stable-10314"
```

## Install

```bash
helm install myjitsi . -f myvalues.yaml

kubectl get pods
kubectl get ingress
```

## Uninstall

```bash
helm uninstall myjitsi
```