openreplay/scripts/helm/vars.yaml
Rajesh Rajendran b958da38dd
Enable monitoring for enterprise edition (#32)
* chore(install): flag to install monitoring

Signed-off-by: Rajesh Rajendran <rjshrjndrn@gmail.com>

* chore(install): change request to min memory and cpu.

* chore(install): grafana proxy path

Signed-off-by: Rajesh Rajendran <rjshrjndrn@gmail.com>

* chore(install): ansible tag for grafana password

Signed-off-by: Rajesh Rajendran <rjshrjndrn@gmail.com>

* fix(install): grafana password override

Signed-off-by: Rajesh Rajendran <rjshrjndrn@gmail.com>

* chore(install): Adding grafana nginx path

Signed-off-by: Rajesh Rajendran <rjshrjndrn@gmail.com>

* feat(nginx): getting resolver ip for nginx ip resolution.

Signed-off-by: Rajesh Rajendran <rjshrjndrn@gmail.com>
2021-06-11 21:10:31 +00:00

73 lines
2.3 KiB
YAML

###################
## Mandatory Fields.
###################
# Give the path of the kubeconfig_path: /home/user/.kube/config
# we can access the kubernetes cluster.
# Give absolute file path.
# Use following command to get the full file path
# `readlink -f <file>`
kubeconfig_path: ""
# Using which domain name, you'll be accessing OpenReplay
# for example: domain_name: "openreplay.mycompany.com"
#
# Without domain name session replay is not possible, because we've to
# create signed url for s3 objects.
domain_name: ""
###################
## Optional Fields.
###################
# If you've private registry, please update the details here.
docker_registry_username: ""
docker_registry_password: ""
docker_registry_url: "rg.fr-par.scw.cloud/foss"
image_tag: "v1.1.0"
# Nginx ssl certificates.
# in cert format
# Give absolute file path.
# Use following command to get the full file path
# `readlink -f <file>`
# For example:
# nginx_ssl_cert_file_path: "/home/openreplay/nginx-cert.crt"
# nginx_ssl_key_file_path: "/home/openreplay/nginx-key.pem"
#
# By Default, we'll create a self signed certificate for nginx, and populate the values here.
# Once you've proper domain name, and ssl certificate
# Change the following variables accordingly.
nginx_ssl_cert_file_path: ""
nginx_ssl_key_file_path: ""
# This key is used to create password for chalice api requests.
# Create a strong password.
# By default, a default key will be generated and will update the value here.
jwt_secret_key: ""
# Random password for minio,
# If not defined, will generate at runtime.
# Use following command to generate password
# `openssl rand -base64 30`
minio_access_key: ""
minio_secret_key: ""
# If you're using enterprise edition.
# Insert the enterprise_edition_License key which you got.
enterprise_edition_license: ""
# Enable monitoring
# If set, monitoring stack will be installed
# including, prometheus, grafana and other core components,
# to scrape the metrics. But this will cost, additional resources (cpu and memory).
# Monitoring won't be installed on base installation.
enable_monitoring: "false"
# Password for grafana.
# If password is not given, it'll be generated, and updated here.
#
# Use following command to generate password
# `openssl rand -base64 30`
#
# Username: admin
grafana_password: ""