{"id":23599808,"url":"https://github.com/wrale/wrale-charts","last_synced_at":"2026-04-25T12:33:00.638Z","repository":{"id":266493227,"uuid":"898502854","full_name":"wrale/wrale-charts","owner":"wrale","description":"Collection of Helm charts maintained and distributed by Wrale. Includes charts for common applications and infrastructure components. Contributions welcome. (STATUS: PRE-ALPHA)","archived":false,"fork":false,"pushed_at":"2026-04-09T02:39:27.000Z","size":82,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-04-09T04:26:01.236Z","etag":null,"topics":["charts","cloud-native","deployment","helm","helm-charts","helm-repository","k8s","kubernetes"],"latest_commit_sha":null,"homepage":"https://wrale.github.io/wrale-charts/","language":"Go Template","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wrale.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-04T14:09:07.000Z","updated_at":"2026-04-09T02:39:24.000Z","dependencies_parsed_at":"2025-02-18T09:42:21.934Z","dependency_job_id":"eb2a55b9-ebc5-4468-977a-c4fbf0d1c466","html_url":"https://github.com/wrale/wrale-charts","commit_stats":null,"previous_names":["wrale/wrale-charts"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/wrale/wrale-charts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrale%2Fwrale-charts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrale%2Fwrale-charts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrale%2Fwrale-charts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrale%2Fwrale-charts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wrale","download_url":"https://codeload.github.com/wrale/wrale-charts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrale%2Fwrale-charts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32262801,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T09:15:33.318Z","status":"ssl_error","status_checked_at":"2026-04-25T09:15:31.997Z","response_time":59,"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":["charts","cloud-native","deployment","helm","helm-charts","helm-repository","k8s","kubernetes"],"created_at":"2024-12-27T11:26:13.751Z","updated_at":"2026-04-25T12:33:00.619Z","avatar_url":"https://github.com/wrale.png","language":"Go Template","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wrale Helm Charts\n\nThis repository hosts official Helm charts for Wrale projects. Our charts follow best practices for Kubernetes deployments and aim to be secure, maintainable, and user-friendly.\n\n## Getting Started\n\n### Prerequisites\n- Kubernetes 1.19+\n- Helm 3.13.0+\n- kubectl configured with access to your cluster\n\n### Installation\n\n1. Add the Wrale Helm repository:\n```bash\nhelm repo add wrale https://wrale.github.io/wrale-charts\nhelm repo update\n```\n\n2. View available charts:\n```bash\nhelm search repo wrale\n```\n\n3. Install a chart:\n```bash\nhelm install my-release wrale/\u003cchart-name\u003e\n```\n\n## Development Setup\n\n### Local Environment Setup\n1. Clone the repository:\n```bash\ngit clone https://github.com/wrale/wrale-charts.git\ncd wrale-charts\n```\n\n2. Install development dependencies:\n- [helm](https://helm.sh/docs/intro/install/) (v3.13.0+)\n- [helm-docs](https://github.com/norwoodj/helm-docs)\n- [yamllint](https://github.com/adrienverge/yamllint)\n- [ct (chart-testing)](https://github.com/helm/chart-testing)\n\n3. Set up pre-commit hooks:\n```bash\npre-commit install\n```\n\n### Creating a New Chart\n\n1. Create a new chart using our template:\n```bash\ncp -r charts/app-template charts/my-chart\n```\n\n2. Update chart files following our [Chart Guidelines](docs/GUIDELINES.md)\n\n3. Update documentation:\n```bash\nhelm-docs -c charts/my-chart\n```\n\n4. Test your chart:\n```bash\nct lint --config .github/ct.yaml --charts charts/my-chart\nct install --config .github/ct.yaml --charts charts/my-chart\n```\n\n## Testing\n\n### Automated Testing\nOur CI pipeline automatically runs:\n- YAML linting\n- Helm chart linting\n- Chart installation tests\n- Template validation\n- Schema validation\n\n### Local Testing\n1. Lint your chart:\n```bash\nct lint --config .github/ct.yaml --charts charts/my-chart\n```\n\n2. Install and test chart:\n```bash\nct install --config .github/ct.yaml --charts charts/my-chart\n```\n\n3. Validate templates:\n```bash\nhelm template --debug charts/my-chart\n```\n\n## Release Process\n\n1. Update Chart.yaml with new version\n\n2. Update CHANGELOG.md following our [guidelines](docs/RELEASE.md)\n\n3. Submit a pull request with your changes\n\n4. Upon merge to main:\n   - GitHub Actions will package the chart\n   - Chart will be published to GitHub Pages\n   - GitHub Release will be created automatically\n   - Helm repository index will be updated\n\n## Contributing\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.\n\n## Available Charts\nSee individual chart documentation in the [charts/](charts/) directory.\n\n## Support\n- Create an [issue](https://github.com/wrale/wrale-charts/issues/new/choose) for bug reports\n- Start a [discussion](https://github.com/wrale/wrale-charts/discussions) for questions\n\n## License\nApache License 2.0","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwrale%2Fwrale-charts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwrale%2Fwrale-charts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwrale%2Fwrale-charts/lists"}