{"id":24769582,"url":"https://github.com/appthrust/logto-helm","last_synced_at":"2025-07-17T16:04:50.526Z","repository":{"id":273811723,"uuid":"920961312","full_name":"appthrust/logto-helm","owner":"appthrust","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-23T05:16:33.000Z","size":10,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-04T04:18:18.036Z","etag":null,"topics":["logto"],"latest_commit_sha":null,"homepage":"","language":"Smarty","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/appthrust.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}},"created_at":"2025-01-23T04:41:48.000Z","updated_at":"2025-04-07T15:47:50.000Z","dependencies_parsed_at":"2025-01-23T05:29:08.180Z","dependency_job_id":"1a6f1826-a5e4-4441-8d6a-175526d64075","html_url":"https://github.com/appthrust/logto-helm","commit_stats":null,"previous_names":["appthrust/logto-helm"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/appthrust/logto-helm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appthrust%2Flogto-helm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appthrust%2Flogto-helm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appthrust%2Flogto-helm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appthrust%2Flogto-helm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/appthrust","download_url":"https://codeload.github.com/appthrust/logto-helm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appthrust%2Flogto-helm/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265625587,"owners_count":23800625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["logto"],"created_at":"2025-01-29T03:00:16.890Z","updated_at":"2025-07-17T16:04:50.508Z","avatar_url":"https://github.com/appthrust.png","language":"Smarty","readme":"# Logto Helm Chart\n\nA Helm chart for deploying [Logto](https://logto.io/) Identity Service on Kubernetes with optional PostgreSQL database.\n\n## Prerequisites\n\n- Kubernetes 1.30+\n- Helm 3.0+\n- PV provisioner support in the underlying infrastructure (if persistence is enabled)\n\n## Installation\n\n```bash\nhelm install logto ./charts/logto\n```\n\n## Configuration\n\nThe following table lists the configurable parameters of the Logto chart and their default values.\n\n### Global Parameters\n\n| Parameter | Description | Default |\n|-----------|-------------|---------|\n| `replicaCount` | Number of Logto replicas | `1` |\n| `image.repository` | Logto image repository | `svhd/logto` |\n| `image.tag` | Logto image tag | `latest` |\n| `image.pullPolicy` | Image pull policy | `IfNotPresent` |\n\n### Logto Configuration\n\n| Parameter | Description | Default |\n|-----------|-------------|---------|\n| `logto.trustProxyHeader` | Trust proxy headers when behind reverse proxy | `true` |\n| `logto.endpoint` | Public URL for Logto API | `\"\"` |\n| `logto.adminEndpoint` | Public URL for admin console | `\"\"` |\n\n### Service Configuration\n\nThe service exposes two ports:\n- Main API endpoint (3001)\n- Admin endpoint (3002)\n\n```yaml\nservice:\n  type: ClusterIP\n  ports:\n    - name: http-main\n      port: 3001\n    - name: http-admin\n      port: 3002\n```\n\n### PostgreSQL Configuration\n\n| Parameter | Description | Default |\n|-----------|-------------|---------|\n| `postgresql.enabled` | Enable PostgreSQL deployment | `true` |\n| `postgresql.auth.username` | PostgreSQL username | `postgres` |\n| `postgresql.auth.password` | PostgreSQL password | `p0stgr3s` |\n| `postgresql.auth.database` | PostgreSQL database name | `logto` |\n| `postgresql.persistence.enabled` | Enable persistence | `true` |\n| `postgresql.persistence.size` | PVC size | `8Gi` |\n\n### Resource Requirements\n\nDefault resource limits:\n\n```yaml\nresources:\n  limits:\n    cpu: 1000m\n    memory: 1024Mi\n  requests:\n    cpu: 100m\n    memory: 128Mi\n```\n\n## Example Installation\n\n1. Create a values file (`values.yaml`):\n\n```yaml\nlogto:\n  endpoint: \"https://logto.example.com/api\"\n  adminEndpoint: \"https://logto.example.com/admin\"\n\ningress:\n  enabled: true\n  hosts:\n    - host: logto.example.com\n      paths:\n        - path: /\n          pathType: ImplementationSpecific\n\npostgresql:\n  auth:\n    password: your-secure-password\n```\n\n2. Install the chart:\n\n```bash\nhelm install logto ./charts/logto -f values.yaml\n```\n\n## Health Checks\n\nThe Logto application exposes a health check endpoint at `/api/status` which is used by Kubernetes probes to determine pod health.\n\n## Notes\n\n- For production deployments, it's recommended to:\n  - Use a secure PostgreSQL password\n  - Enable ingress with TLS\n  - Configure proper resource limits\n  - Use a specific image tag instead of `latest`\n  - Consider increasing PostgreSQL PVC size based on your data retention needs\n\n## License\n\nThis Helm chart is available under the MIT license.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappthrust%2Flogto-helm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fappthrust%2Flogto-helm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappthrust%2Flogto-helm/lists"}