openreplay/scripts/helm/app
2021-05-10 08:26:03 +05:30
..
openreplay feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
alerts.yaml feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
assets.yaml feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
chalice.yaml feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
db.yaml feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
docker_registry.sh feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
ender.yaml feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
http.yaml feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
install.sh feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
integrations.yaml feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
issues.md feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
README.md feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
sink.yaml feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30
storage.yaml feat(scripts): initial commit of build and deploy scripts. 2021-05-10 08:26:03 +05:30

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 <applicaion>.yaml file.

Below is a sample template.

namespace: app        # In which namespace alert runs.
image:
  repository: 998611063711.dkr.ecr.eu-central-1.amazonaws.com/alert # Which image to use
  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: https://parrot.openreplay.io/alerts/notifications
  CLICKHOUSE_STRING: tcp://clickhouse.db.svc.cluster.local:9000/default
  POSTGRES_STRING: postgres://postgresql.db.svc.cluster.local:5432