Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions livekit-stack/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
charts/
Chart.lock
*.tgz
17 changes: 17 additions & 0 deletions livekit-stack/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: v2
name: livekit-stack
description: A unified chart deploying LiveKit server, ingress, and egress.
type: application
version: 0.1.0
appVersion: "1.0"

dependencies:
- name: livekit-server
version: 1.9.0
repository: "file://../livekit-server"
- name: ingress
version: 1.4.3
repository: "file://../ingress"
- name: egress
version: 1.9.0
repository: "file://../egress"
14 changes: 14 additions & 0 deletions livekit-stack/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# LiveKit Stack Helm Chart

This umbrella chart deploys:
- LiveKit Server
- Ingress
- Egress

It is intended for users who want to install all LiveKit components together.

## Usage

```bash
helm dependency update livekit-stack/
helm install livekit livekit-stack/
10 changes: 10 additions & 0 deletions livekit-stack/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
livekit-server:
replicaCount: 1
serviceAccount:
create: true

ingress:
replicaCount: 1

egress:
replicaCount: 1