Skip to content

Commit

Permalink
Merge branch 'main' of github.com:EthDevOps/helm-charts
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticroentgen committed Nov 8, 2024
2 parents ed901bc + f3ef077 commit d25d4b5
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 0 deletions.
14 changes: 14 additions & 0 deletions charts/jitsi-monitor/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: v2
name: jitsi-monitor
description: Monitors the health of Jitsi Meet instances and bridges
type: application

version: 0.1.8

# App metadata
appVersion: "v0.1.3"
sources:
- https://github.com/EthDevOps/jitsi-monitor-docker
maintainers:
- name: gcordalis
email: george.cordalis@ethereum.org
11 changes: 11 additions & 0 deletions charts/jitsi-monitor/templates/configmap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-config
data:
JITSI_URL: "{{ .Values.config.jitsiUrl }}"
BRIDGE_REGIONS: "{{ .Values.config.bridgeRegions }}"
RUNTIME: "{{ .Values.config.runtime }}"
MEDIA_OPTION: "{{ .Values.config.mediaOption }}"
TAKE_SCREENSHOTS: "{{ .Values.config.takeScreenshots }}"
CONTINUOUS_MODE: "true"
36 changes: 36 additions & 0 deletions charts/jitsi-monitor/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ .Release.Name }}-monitor
labels:
app: {{ .Release.Name }}-monitor
spec:
replicas: 1
selector:
matchLabels:
app: {{ .Release.Name }}-monitor
template:
metadata:
labels:
app: {{ .Release.Name }}-monitor
{{- if .Values.podAnnotations }}
annotations:
{{- .Values.podAnnotations | toYaml | nindent 8 }}
{{- end }}
spec:
containers:
- name: jitsi-monitor
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- containerPort: {{ .Values.service.port }}
name: http
envFrom:
- configMapRef:
name: {{ .Release.Name }}-config
volumeMounts:
- name: screenshots
mountPath: /app/screenshots
volumes:
- name: screenshots
emptyDir: {}
17 changes: 17 additions & 0 deletions charts/jitsi-monitor/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
image:
repository: docker.ethquokkaops.io/ethquokkaops/ethdevops/jitsi-monitor-docker
tag: v0.1.6
pullPolicy: IfNotPresent
config:
jitsiUrl: "https://jitsihost"
bridgeRegions: "au,eu,us"
runtime: "60"
mediaOption: "1"
takeScreenshots: "false"

# Service configuration
service:
type: ClusterIP
port: 8000

podAnnotations: {}

0 comments on commit d25d4b5

Please sign in to comment.