- no longer using :latest by default in values.yaml, instead updating version with each release - set chart version to match app version in Chart.yaml - update version in helm chart and values.yaml as part of update-version.sh script - update test.yaml and local-config.yaml to enable using :latest tag images - ci: add ci script for packaging current helm chart - docs: updates docs to indicate deploying directly from GitHub release - docs: add script to fill in latest version for 'VERSION' using custom script - chart: set local_service_port to 30870 by default, but use only if no ingress. - default values.yaml set up for local deployment, local-config.yaml contains additional commented out examples - ci draft: add deployment info to draft with helm install command for current version - test: fix password check test
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
# Local Config
|
|
# ------------
|
|
|
|
# This config is designed for local (non-hosted) use, with either Docker Desktop, minikube or local microk8s.
|
|
# With this setup, the cluster should be accessed locally via 'localhost'
|
|
|
|
# use custom port for local access, default is localhost:30870
|
|
# uncomment and change below
|
|
# local_service_port: 30870
|
|
|
|
# Uncomment to set custom organization name
|
|
# default_org: "My Local Organization"
|
|
|
|
# use version specified in values.yaml, uncomment to use :latest release instead
|
|
# backend_image: docker.io/webrecorder/browsertrix-backend:latest
|
|
# frontend_image: docker.io/webrecorder/browsertrix-frontend:latest
|
|
|
|
# overrides to use existing images in local Docker, otherwise will pull from repository
|
|
# backend_pull_policy: "Never"
|
|
# frontend_pull_policy: "Never"
|
|
# crawler_pull_policy: "Never"
|
|
# redis_pull_policy: "Never"
|
|
|
|
|
|
# microk8s: if developing locally, can override these to use images from local microk8s repository (on localhost:32000)
|
|
# backend_image: "localhost:32000/webrecorder/browsertrix-backend:latest"
|
|
# frontend_image: "localhost:32000/webrecorder/browsertrix-frontend:latest"
|
|
|
|
|
|
# optionally, override default mongodb auth, used for all data storage:
|
|
|
|
#mongo_auth:
|
|
#username: root
|
|
#password: PASSWORD!
|
|
|
|
|
|
# optionally, set these to custom values
|
|
|
|
#superuser:
|
|
# set this to enable a superuser admim
|
|
# email: admin@example.com
|
|
|
|
# optional: if not set, automatically generated
|
|
# change or remove this
|
|
# password: PASSWORD!
|
|
|
|
|