* feat(api): assist peerJS server * feat(api): install assist_server dependencies and start it with the API * feat(api): assist: list live sessions * feat(nginx): expose assist_server and block peers listing * feat(api): merged sourcemaps reader and assist-server feat(api): change image definition feat(api): changed service start command feat(utilities): created full server & image definition feat(nginx): reset chalice configuration * feat(utilities): utilities.yaml * feat(nginx): utilities URL * feat(utilities): utilities template * feat(ci): Adding utilities GH action. Signed-off-by: Rajesh Rajendran <rjshrjndrn@gmail.com> * feat(utilities): build script Co-authored-by: Rajesh Rajendran <rjshrjndrn@gmail.com> |
||
|---|---|---|
| .. | ||
| openreplay | ||
| alerts.yaml | ||
| assets.yaml | ||
| chalice.yaml | ||
| db.yaml | ||
| docker_registry.sh | ||
| ender.yaml | ||
| http.yaml | ||
| install.sh | ||
| integrations.yaml | ||
| README.md | ||
| sink.yaml | ||
| storage.yaml | ||
| utilities.yaml | ||
Core OpenReplay application configuration folder
This folder contains configuration for core OpenReplay apps. All applications share common helm chart named openreplay which can be overridden by <application>.yaml file.
Below is a sample template.
namespace: app # In which namespace alerts runs.
image:
repository: rg.fr-par.scw.cloud/foss # Which image to use
name: alerts
pullPolicy: IfNotPresent
tag: "latest" # Overrides the image tag whose default is the chart appVersion.
imagePullSecrets:
# If needed credentials to pull the image.
# aws-registry is created using script docker_registry.sh.
- name: aws-registry
service:
type: ClusterIP
port: 9000
resources:
limits:
cpu: 256m
memory: 512Mi
requests:
cpu: 100m
memory: 128Mi
# env vars for the application
env:
ALERT_NOTIFICATION_STRING: http://chalice-openreplay.app.svc.cluster.local:8000/alerts/notifications
CLICKHOUSE_STRING: tcp://clickhouse.db.svc.cluster.local:9000/default
POSTGRES_STRING: postgres://postgresql.db.svc.cluster.local:5432