browsertrix/chart
Ilya Kreymer c1817cbe04
add horizontal pod autoscaler for backend and frontend via helm charts (#1633)
Supports horizontal pod autoscaling (hpa) for backend and frontend pods:
- use cpu and memory averages
- adjust base memory + cpu for backend
- threshold set to 80% cpu and 95% memory utilization by default
(configurable in values.yaml)
- instead of backend and frontend replicas, set max replicas in
values.yaml
- only enable hpa if backend_max_replicas or frontend_max_replicas is
>1, default to 1 for now
2024-03-28 16:39:27 -07:00
..
admin/logging Add lightweight logging mode (#668) 2023-03-10 14:34:37 -08:00
app-templates Crawler pod memory padding + auto scaling (#1631) 2024-03-28 16:39:00 -07:00
btrix-crds Add max crawl size option to backend and frontend (#1045) 2023-08-26 22:00:37 -07:00
charts MetaController update (#1630) 2024-03-27 08:49:56 -07:00
email-templates Browsertrix Cloud → Browsertrix text rename (#1466) 2024-03-12 11:30:05 -04:00
examples Support multiple crawler versions (#1420) 2024-01-16 15:32:12 -08:00
templates add horizontal pod autoscaler for backend and frontend via helm charts (#1633) 2024-03-28 16:39:27 -07:00
test QA Runs Initial Backend Implementation (#1586) 2024-03-20 22:42:16 -07:00
.helmignore
Chart.lock MetaController update (#1630) 2024-03-27 08:49:56 -07:00
Chart.yaml MetaController update (#1630) 2024-03-27 08:49:56 -07:00
README.md Refactor to use new operator on backend (#789) 2023-04-24 18:30:52 -07:00
values.yaml add horizontal pod autoscaler for backend and frontend via helm charts (#1633) 2024-03-28 16:39:27 -07:00

Update Helm dependencies

  • It needs to update Helm charts after changing its dependencies (e.g. logging)
$ helm dependency update .

Update metacontroller

#!/bin/bash

# intall metacontroller
git clone --depth=1 https://github.com/metacontroller/metacontroller.git
cd metacontroller
helm package deploy/helm/metacontroller --destination deploy/helm
cd ..

# update dependency
helm dependency update
  • Bump up the metacontroller version in Chart.yaml