{"id":19792784,"url":"https://github.com/devpro/helm-charts","last_synced_at":"2026-01-25T13:04:12.681Z","repository":{"id":62382145,"uuid":"550778671","full_name":"devpro/helm-charts","owner":"devpro","description":"Tested configurations and clear documentation to ease Kubernetes workload deployment","archived":false,"fork":false,"pushed_at":"2025-12-11T12:26:56.000Z","size":462,"stargazers_count":9,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-12T13:51:30.431Z","etag":null,"topics":["cloud-native-computing","fleet","gitops","helm-charts","kubernetes"],"latest_commit_sha":null,"homepage":"https://kwt.devpro.fr","language":"Shell","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/devpro.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":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":"2022-10-13T10:05:48.000Z","updated_at":"2025-12-11T12:26:06.000Z","dependencies_parsed_at":"2025-12-11T17:06:00.019Z","dependency_job_id":null,"html_url":"https://github.com/devpro/helm-charts","commit_stats":null,"previous_names":[],"tags_count":123,"template":false,"template_full_name":null,"purl":"pkg:github/devpro/helm-charts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devpro%2Fhelm-charts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devpro%2Fhelm-charts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devpro%2Fhelm-charts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devpro%2Fhelm-charts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devpro","download_url":"https://codeload.github.com/devpro/helm-charts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devpro%2Fhelm-charts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28753411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T10:25:12.305Z","status":"ssl_error","status_checked_at":"2026-01-25T10:25:11.933Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["cloud-native-computing","fleet","gitops","helm-charts","kubernetes"],"created_at":"2024-11-12T07:07:58.301Z","updated_at":"2026-01-25T13:04:12.666Z","avatar_url":"https://github.com/devpro.png","language":"Shell","readme":"﻿# Kube Workload Toolkit\n\n[![GitLab Pipeline Status](https://gitlab.com/devpro-labs/automation/helm-charts/badges/main/pipeline.svg)](https://gitlab.com/devpro-labs/automation/helm-charts/-/pipelines)\n[![CI](https://github.com/devpro/helm-charts/actions/workflows/ci.yml/badge.svg)](https://github.com/devpro/helm-charts/actions/workflows/ci.yml)\n[![PKG](https://github.com/devpro/helm-charts/actions/workflows/pkg.yml/badge.svg)](https://github.com/devpro/helm-charts/actions/workflows/pkg.yml)\n\nWelcome! This project provides:\n\n- **Curated guides**: Step-by-step instructions for installing popular applications using their official Helm charts in a Kubernetes cluster.\n- **Custom Helm charts**: A collection of charts that were created for deploying unique workloads on Kubernetes.\n\nWhether you're deploying custom solutions or setting up well-known applications like NGINX or Prometheus, this repository aims to simplify your Kubernetes journey with tested configurations and clear documentation.\n\n🚀 Get started with the [Kube Workload Toolkit](https://kwt.devpro.fr/)\n\nFeel free to [contribute](CONTRIBUTING.md)!\n\n## Usage\n\n### From Helm CLI\n\n```bash\n# checks helm is installed\nhelm version\n\n# if not already done, adds devpro repository in helm\nhelm repo add devpro https://devpro.github.io/helm-charts\n\n# refreshes helm repository informations\nhelm repo update\n\n# searches for a specific package from the command line\nhelm search repo -l \u003cpackage_name\u003e\n\n# installs a package\nhelm install \u003cpackage_name\u003e\n```\n\n### From ArgoCD\n\n- Create a git repository to store Kubernetes definition files (GitOps approach)\n\n```yaml\n# wordpress/Chart.yaml\napiVersion: v2\nname: wordpress\ndescription: Helm chart for installing WordPress\ntype: application\nversion: 0.1.0\nappVersion: 1.0.0\ndependencies:\n  - name: wordpress\n    version: 0.1.1\n    repository: https://devpro.github.io/helm-charts\n```\n\n- Create a new application in ArgoCD to reference the git repository with the path to the folder\n\n### From Fleet\n\n- Create a git repository to store Kubernetes definition files (GitOps approach)\n\n```yaml\n# wordpress/fleet.yaml\ndefaultNamespace: sample-apps\nhelm:\n  repo: https://devpro.github.io/helm-charts\n  chart: wordpress\n  version: 0.1.1\n  releaseName: wordpress\n```\n\n- Create a GitRepo to reference the git repository with the path to the folder\n\n### From Rancher\n\n- In your cluster\n  - Go to \"Apps\" \u003e \"Repositories\", click on \"Create\" and enter `https://devpro.github.io/helm-charts` as \"Index URL\", then click on \"Create\"\n  - Go to \"Apps\" \u003e \"Charts\", look at the available applications (charts) and install the one(s) you want\n\n## Samples\n\n- [DevOpsDays Geneva 2023](samples/devopsdays-geneva-2023/README.md)\n- [SUSE Exchange Paris 2023](samples/suse-exchange-paris-2023/README.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevpro%2Fhelm-charts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevpro%2Fhelm-charts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevpro%2Fhelm-charts/lists"}