{"id":44664698,"url":"https://github.com/exivity/charts","last_synced_at":"2026-02-15T00:17:29.421Z","repository":{"id":37923315,"uuid":"474979126","full_name":"exivity/charts","owner":"exivity","description":"☸️ Exivity Helm Repository","archived":false,"fork":false,"pushed_at":"2025-12-18T12:36:38.000Z","size":999,"stargazers_count":7,"open_issues_count":5,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-21T02:25:31.526Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://charts.exivity.com","language":"Smarty","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/exivity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","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":"2022-03-28T11:51:18.000Z","updated_at":"2025-12-03T15:25:12.000Z","dependencies_parsed_at":"2025-12-17T22:08:38.437Z","dependency_job_id":null,"html_url":"https://github.com/exivity/charts","commit_stats":null,"previous_names":[],"tags_count":162,"template":false,"template_full_name":null,"purl":"pkg:github/exivity/charts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exivity%2Fcharts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exivity%2Fcharts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exivity%2Fcharts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exivity%2Fcharts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/exivity","download_url":"https://codeload.github.com/exivity/charts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exivity%2Fcharts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29461628,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T22:42:09.113Z","status":"ssl_error","status_checked_at":"2026-02-14T22:42:05.053Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-02-15T00:17:28.209Z","updated_at":"2026-02-15T00:17:29.416Z","avatar_url":"https://github.com/exivity.png","language":"Smarty","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Exivity Helm Chart\n\n[![Documentation](https://img.shields.io/badge/docs-helm%20chart-blue?style=flat-square\u0026logo=kubernetes)](https://docs.exivity.com/getting%20started/installation/kubernetes/)\n\nThis Helm chart deploys Exivity, a comprehensive cloud metering and billing solution, on Kubernetes clusters.\n\n## Prerequisites\n\n- Kubernetes 1.20+\n- Helm 3.0+\n- A StorageClass that supports ReadWriteMany access mode (for shared storage)\n\n## Getting Started\n\n### 1. Add the Helm Repository\n\n```bash\nhelm repo add exivity https://charts.exivity.com\nhelm repo update\n```\n\n### 2. Install the Chart\n\nInstall Exivity with your desired release name:\n\n```bash\nhelm upgrade --install exivity exivity/exivity \\\n    --namespace exivity \\\n    --create-namespace \\\n    --wait \\\n    --set storage.storageClass=\u003cyour-storage-class\u003e\n```\n\nReplace `\u003cyour-storage-class\u003e` with your preferred storage class that supports ReadWriteMany access mode.\n\n### 3. Storage Solutions\n\nExivity is tested with various storage solutions including NFS and Longhorn. Here are examples for common setups:\n\n#### NFS Storage with nfs-ganesha-server-and-external-provisioner\n\n```bash\n# Install NFS server provisioner\nhelm repo add nfs-ganesha-server-and-external-provisioner https://kubernetes-sigs.github.io/nfs-ganesha-server-and-external-provisioner/\nhelm install nfs-server nfs-ganesha-server-and-external-provisioner/nfs-server-provisioner \\\n    --namespace nfs-server \\\n    --create-namespace \\\n    --wait \\\n    --set persistence.enabled=true \\\n    --set persistence.size=5Gi \\\n    --set storageClass.name=nfs-client\n\n# Then install Exivity\nhelm upgrade --install exivity exivity/exivity \\\n    --namespace exivity \\\n    --create-namespace \\\n    --wait \\\n    --set storage.storageClass=nfs-client\n```\n\n#### Longhorn Storage (Beta Support)\n\nIf you're using Longhorn, you can install Exivity with:\n\n\u003e **Note**: Longhorn support is currently in beta. While it works, we cannot ensure the same level of stability as NFS storage solutions.\n\n```bash\nhelm upgrade --install exivity exivity/exivity \\\n    --namespace exivity \\\n    --create-namespace \\\n    --wait \\\n    --set storage.storageClass=longhorn\n```\n\n## Configuration\n\n### Basic Configuration\n\n| Parameter | Description | Default |\n|-----------|-------------|---------|\n| `licence` | Exivity license key (use \"demo\" for evaluation) | `\"demo\"` |\n| `storage.storageClass` | Storage class for persistent volumes | `\"\"` |\n| `ingress.enabled` | Enable ingress | `true` |\n| `ingress.host` | Hostname for the ingress | `\"exivity\"` |\n\n### Example: Custom Values\n\nCreate a `values.yaml` file:\n\n```yaml\nlicence: \"your-license-key\"\nstorage:\n  storageClass: \"nfs-client\"\ningress:\n  enabled: true\n  host: \"exivity.example.com\"\n  tls:\n    enabled: true\n    secret: \"exivity-tls\"\n```\n\nInstall with custom values:\n\n```bash\nhelm upgrade --install exivity exivity/exivity \\\n    --namespace exivity \\\n    --create-namespace \\\n    --values values.yaml\n```\n\n## Advanced Configuration\n\nFor detailed configuration options, see the [examples](./charts/exivity/examples/) directory:\n\n- [GUI as Website](./charts/exivity/examples/gui-as-website.yaml) - Configure ingress for web access\n- [External PostgreSQL](./charts/exivity/examples/separate-postgresql.yaml) - Use external PostgreSQL\n- [External RabbitMQ](./charts/exivity/examples/separate-rabbitmq.yaml) - Use external RabbitMQ\n- [Larger PostgreSQL](./charts/exivity/examples/larger-postgresql.yaml) - Scale PostgreSQL resources\n\n## Accessing Exivity\n\nAfter installation, Exivity will be available at:\n\n- **With Ingress**: `http(s)://\u003cyour-hostname\u003e/`\n\n## Uninstalling\n\nTo uninstall the chart:\n\n```bash\nhelm uninstall exivity -n exivity\n```\n\n## Support\n\nFor more detailed installation instructions, visit the [Exivity Installation Guide](https://docs.exivity.com/getting%20started/installation/kubernetes/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexivity%2Fcharts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexivity%2Fcharts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexivity%2Fcharts/lists"}