browsertrix/chart/values.yaml
Ilya Kreymer ed27f3e3ee job handling:
- job watch: add watch loop for job failure (backofflimitexceeded)
- set job retries + job timeout via chart values
- sigterm starts graceful shutdown by default, including for timeout
- use sigusr1 to switch to instant shutdown
- update stop_crawl() to use new semantics
2021-08-23 21:22:01 -07:00

102 lines
2.4 KiB
YAML

name: browsertrix-cloud
# API Image
# =========================================
api_image: "webrecorder/browsertrix-api"
api_pull_policy: "Never"
api_password_secret: "c9085f33ecce4347aa1d69339e16c499"
api_num_replicas: 1
api_requests_cpu: "25m"
api_limits_cpu: "100m"
api_requests_memory: "100M"
api_limits_memory: "256M"
# MongoDB Image
# =========================================
mongo_local: true
mongo_host: "local-mongo"
mongo_image: "mongo"
mongo_pull_policy: "IfNotPresent"
mongo_limit_cpu: "100m"
mongo_requests_cpu: "25m"
mongo_auth:
username: root
password: example
# Crawler Image
# =========================================
crawler_image: "webrecorder/browsertrix-crawler:latest"
crawler_pull_policy: "Never"
crawler_namespace: "crawlers"
# set 0 to disable timeout
crawl_timeout: 0
# num retries
crawl_retries: 1
# Storage
# =========================================
storage:
access_key: "ADMIN"
secret_key: "PASSW0RD"
# api_endpoint can be "" if using AWS S3, otherwise, set to your provider's S3 endpoint
endpoint: "http://local-minio.default:9000/test-bucket/"
# if your provider requires path-style URLs for S3 objects, set force_path_style to "true" (any truthy string)
# https://docs.aws.amazon.com/AmazonS3/latest/dev/VirtualHosting.html
force_path_style: "true"
# the target bucket's name and desired storage subpath, formatted as an s3:// URL for convenience
# (the protocol is ignored; the bucket == the netloc; the subpath == the rest)
storage_prefix: "s3://test/bucket/"
# acl settings for uploaded files, if any.
# for example, to enable uploaded files to be public, set to:
# acl: "public-read"
# https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl
acl: ""
# Local Minio Pod (optional)
# =========================================
# set to true to use a local minio image
minio_local: True
minio_scheme: "http"
minio_host: "local-minio.default:9000"
minio_image: minio/minio
minio_mc_image: minio/mc
minio_pull_policy: "IfNotPresent"
# Deployment options
# =========================================
# Ingress (Optional)
# Optional: if 'host' is set, a publicly accessible Ingress controller is created with an SSL cert (using letsencrypt)
ingress:
host: ""
cert_email: "ikreymer@gmail.com"
# Optional: configure load balancing
service:
type: NodePort
# annotations:
# service.beta.kubernetes.io/aws-load-balancer-internal: "true"
# helm.sh/resource-policy: keep