https://github.com/emrahcom/jitsi-helm-case-1
https://github.com/emrahcom/jitsi-helm-case-1
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/emrahcom/jitsi-helm-case-1
- Owner: emrahcom
- Created: 2025-05-19T10:16:48.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-10T10:42:40.000Z (12 months ago)
- Last Synced: 2025-06-10T11:38:30.470Z (12 months ago)
- Language: HTML
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```