{"id":51135552,"url":"https://github.com/bmlt-enabled/charts","last_synced_at":"2026-06-25T17:30:53.735Z","repository":{"id":163746183,"uuid":"639196515","full_name":"bmlt-enabled/charts","owner":"bmlt-enabled","description":"BMLT Enabled official Helm Charts","archived":false,"fork":false,"pushed_at":"2026-05-25T14:56:29.000Z","size":104,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-25T16:32:19.803Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://charts.bmlt.app/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bmlt-enabled.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-05-11T01:11:10.000Z","updated_at":"2026-05-25T14:56:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"2a731e3e-f3ef-402a-bab2-4fb4b1804700","html_url":"https://github.com/bmlt-enabled/charts","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bmlt-enabled/charts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmlt-enabled%2Fcharts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmlt-enabled%2Fcharts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmlt-enabled%2Fcharts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmlt-enabled%2Fcharts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bmlt-enabled","download_url":"https://codeload.github.com/bmlt-enabled/charts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmlt-enabled%2Fcharts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34786225,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-25T17:30:53.667Z","updated_at":"2026-06-25T17:30:53.729Z","avatar_url":"https://github.com/bmlt-enabled.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BMLT Helm Charts\n\nHelm chart repository for the [Basic Meeting List Toolbox (BMLT)](https://bmlt.app)\nserver, published at **https://charts.bmlt.app**.\n\n```bash\nhelm repo add bmlt https://charts.bmlt.app\nhelm repo update\nhelm search repo bmlt\nhelm install \u003crelease\u003e bmlt/bmlt-server -n \u003cnamespace\u003e\n```\n\nThe chart is also published as an OCI artifact on Docker Hub:\n\n```bash\nhelm pull oci://registry-1.docker.io/bmltenabled/bmlt-server\n```\n\n## What it deploys\n\n`bmlt-server` runs the [`bmltenabled/bmlt-server`](https://hub.docker.com/r/bmltenabled/bmlt-server)\nimage (Apache + PHP/Laravel, serving on port 8000). The chart provides:\n\n- a **Deployment** for the long-lived server,\n- a **Service** and optional **Ingress**,\n- an optional **HorizontalPodAutoscaler**, and\n- an optional **CronJob** that runs the aggregator import (`php artisan\n  aggregator:InitializeDatabase` + `aggregator:ImportRootServers`) on a schedule.\n\nYou bring your own MySQL/MariaDB — the chart only points the app at it.\n\n## Database\n\nThe server needs a MySQL/MariaDB database — the chart does not provision one.\n\n**For production**, the maintained, cloud-native option is the\n[`mariadb-operator`](https://github.com/mariadb-operator/mariadb-operator),\nwhich manages MariaDB (including Galera clustering, backups, and restores) via\nKubernetes custom resources:\n\n```bash\nhelm repo add mariadb-operator https://helm.mariadb.com/mariadb-operator\nhelm install mariadb-operator-crds mariadb-operator/mariadb-operator-crds\nhelm install mariadb-operator mariadb-operator/mariadb-operator -n \u003cnamespace\u003e\n```\n\nThen create a `MariaDB` resource and a `Secret` for its credentials, and point\nthe chart at the resulting Service via the `database.*` values below. See the\n[operator quickstart](https://github.com/mariadb-operator/mariadb-operator#quickstart)\nfor the CR.\n\n**To just try the chart out**, this repo ships a throwaway MariaDB\n`Deployment` + `Service` at [`test/mariadb.yaml`](test/mariadb.yaml) (the same\none `make e2e` uses). It is intentionally minimal — no persistence, hardcoded\ncredentials — so use it for local testing only, not production:\n\n```bash\nkubectl apply -f test/mariadb.yaml -n \u003cnamespace\u003e\n```\n\n\u003e Older guides recommended the Bitnami MySQL chart. Bitnami deprecated its free\n\u003e catalog in August 2025 (versioned images moved to the frozen `bitnamilegacy`\n\u003e repository), so it is no longer a good choice for new deployments.\n\n## Configuration\n\nCommon values (see [`charts/bmlt-server/values.yaml`](charts/bmlt-server/values.yaml)\nfor the full list):\n\n| Key | Default | Description |\n| --- | --- | --- |\n| `image.tag` | `\"\"` (chart `appVersion`) | Image tag; set `\"latest\"` to track newest. |\n| `database.host` | `mysql.bmlt.svc.cluster.local` | DB host. |\n| `database.port` | `3306` | DB port (`DB_PORT`). |\n| `database.name` | `rootserver` | DB name. |\n| `database.username` / `database.password` | `rootserver` | DB credentials (inline). |\n| `database.dbprefix` | `na` | Table prefix (`DB_PREFIX`). |\n| `database.secrets.username` / `.password` | _unset_ | Source credentials from a Secret instead (see below). |\n| `bmlt.aggregatorMode.enabled` | `true` | Enable aggregator mode + the import CronJob. |\n| `bmlt.aggregatorMode.schedule` | `0 */2 * * *` | CronJob schedule. |\n| `bmlt.googleApiKey` | `\"\"` | Google Maps API key (`GOOGLE_API_KEY`). |\n| `bmlt.secrets.googleApiKey` | _unset_ | Source the API key from a Secret instead. |\n| `extraEnv` | `[]` | Extra env vars passed to server + aggregator. |\n| `ingress.enabled` | `true` | Create an Ingress (defaults to AWS ALB). |\n| `service.type` | `NodePort` | Service type. |\n\n### Sourcing credentials from Secrets\n\nAny of the DB credentials and the Google API key can come from an existing\nSecret instead of plaintext values:\n\n```yaml\ndatabase:\n  secrets:\n    username:\n      name: database-creds\n      key: db-admin-user\n    password:\n      name: database-creds\n      key: db-admin-password\nbmlt:\n  secrets:\n    googleApiKey:\n      name: google-creds\n      key: google-key\n```\n\n### Extra environment variables\n\n```yaml\nextraEnv:\n  - name: ENABLE_LANGUAGE_SELECTOR\n    value: \"true\"\n  - name: MEETING_STATES_AND_PROVINCES\n    value: \"CT,MA,NH,NJ,NY,PA,VT\"\n```\n\n### Ingress\n\nThe default ingress targets the AWS Load Balancer Controller (`className: alb`).\nIf you use ALB, make sure the controller is installed on the cluster and adjust\nthe `ingress.annotations` (subnets, certificate ARN, etc.). For other ingress\ncontrollers, change `ingress.className` and the annotations accordingly, or set\n`ingress.enabled: false`.\n\n## Contributing \u0026 local testing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for the repo layout, the `make` targets,\nhow to spin up a local k3d cluster to test the chart, and the release process.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmlt-enabled%2Fcharts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbmlt-enabled%2Fcharts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmlt-enabled%2Fcharts/lists"}