{"id":50886146,"url":"https://github.com/hops-ops/listmonk-chart","last_synced_at":"2026-06-15T17:03:09.984Z","repository":{"id":360079947,"uuid":"1243940760","full_name":"hops-ops/listmonk-chart","owner":"hops-ops","description":"Helm chart for Listmonk — forked from redzumi/listmonk-chart, adds extraEnvFrom + native OIDC config","archived":false,"fork":false,"pushed_at":"2026-05-24T21:51:22.000Z","size":58,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-24T23:28:50.576Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go Template","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hops-ops.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2026-05-19T20:16:49.000Z","updated_at":"2026-05-19T20:50:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hops-ops/listmonk-chart","commit_stats":null,"previous_names":["hops-ops/listmonk-chart"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/hops-ops/listmonk-chart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Flistmonk-chart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Flistmonk-chart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Flistmonk-chart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Flistmonk-chart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hops-ops","download_url":"https://codeload.github.com/hops-ops/listmonk-chart/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Flistmonk-chart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34372130,"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-15T02:00:07.085Z","response_time":63,"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-15T17:03:08.969Z","updated_at":"2026-06-15T17:03:09.976Z","avatar_url":"https://github.com/hops-ops.png","language":"Go Template","funding_links":[],"categories":[],"sub_categories":[],"readme":"# listmonk-chart\n\nA Helm chart for deploying [Listmonk](https://listmonk.app) — a self-hosted\nnewsletter and mailing-list manager — on Kubernetes.\n\nFork of [redzumi/listmonk-chart](https://github.com/redzumi/listmonk-chart)\nwith two additions:\n\n- **`extraEnvFrom` / `extraEnv`** on the Listmonk Deployment — project SMTP +\n  OIDC credentials as env from `ExternalSecret`-managed Secrets without\n  forking the chart again.\n- **Native OIDC config in `config.toml`** — when `oidc.enabled: true`, the\n  chart renders a `[security.oidc]` block and emits matching\n  `LISTMONK_security__oidc__*` env vars so Listmonk's koanf loader picks the\n  values up at startup.\n\nApp: Listmonk v6.0.0.\n\n## Installation\n\n```bash\nhelm repo add hops-ops-listmonk https://hops-ops.github.io/listmonk-chart\nhelm repo update\nhelm install marketing hops-ops-listmonk/listmonk \\\n  --namespace marketing --create-namespace\n```\n\n## OIDC\n\nListmonk v4.1+ supports OIDC natively. The Listmonk OAuth redirect URI is\n`https://\u003chost\u003e/auth/oidc` — register that with your IdP.\n\n`client_id` and `client_secret` are **not** written to `config.toml`. They\nmust be projected as env via `extraEnvFrom`, sourced from a Kubernetes\nSecret carrying these exact keys:\n\n```yaml\ndata:\n  LISTMONK_security__oidc__client_id:     base64(...)\n  LISTMONK_security__oidc__client_secret: base64(...)\n```\n\nExample values:\n\n```yaml\noidc:\n  enabled: true\n  providerUrl: https://auth.example.com\n  providerName: Zitadel\n\nextraEnvFrom:\n  - secretRef:\n      name: listmonk-oidc-client\n```\n\n## SMTP\n\nListmonk reads SMTP settings from the database (managed in the admin UI).\nThe chart's `smtp.existingSecret` slot is wired through `extraEnvFrom` in\nthis fork so SMTP values are also overridable via env on Pod restart. The\nSecret must use the Listmonk env-var naming:\n\n```yaml\ndata:\n  LISTMONK_smtp__0__host:     ...\n  LISTMONK_smtp__0__port:     ...\n  LISTMONK_smtp__0__username: ...\n  LISTMONK_smtp__0__password: ...\n```\n\n```yaml\nextraEnvFrom:\n  - secretRef:\n      name: listmonk-smtp\n```\n\n## Workflow\n\nReleases are driven by [unbounded-tech/workflow-vnext-tag](https://github.com/unbounded-tech/workflow-vnext-tag).\nConventional Commit prefixes on PR titles/commits to `main` produce a\nsemver bump; the resulting tag triggers `on-version-tagged.yaml` which\npackages the chart and publishes to `gh-pages` (the Helm repo index).\n\n## License\n\nApache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Flistmonk-chart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhops-ops%2Flistmonk-chart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Flistmonk-chart/lists"}