{"id":28751263,"url":"https://github.com/cetic/helm-microservice","last_synced_at":"2026-02-17T16:04:27.290Z","repository":{"id":52652797,"uuid":"219480555","full_name":"cetic/helm-microservice","owner":"cetic","description":"A Helm Chart for DRY microservice deployments","archived":false,"fork":false,"pushed_at":"2022-07-08T12:25:47.000Z","size":54,"stargazers_count":28,"open_issues_count":1,"forks_count":25,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-04-13T09:20:24.504Z","etag":null,"topics":["helm","kubernetes","microservice"],"latest_commit_sha":null,"homepage":"","language":"Smarty","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/cetic.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}},"created_at":"2019-11-04T10:59:41.000Z","updated_at":"2024-03-30T16:40:16.000Z","dependencies_parsed_at":"2022-08-22T00:01:00.277Z","dependency_job_id":null,"html_url":"https://github.com/cetic/helm-microservice","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/cetic/helm-microservice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cetic%2Fhelm-microservice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cetic%2Fhelm-microservice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cetic%2Fhelm-microservice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cetic%2Fhelm-microservice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cetic","download_url":"https://codeload.github.com/cetic/helm-microservice/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cetic%2Fhelm-microservice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29549236,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T14:33:00.708Z","status":"ssl_error","status_checked_at":"2026-02-17T14:32:58.657Z","response_time":100,"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":["helm","kubernetes","microservice"],"created_at":"2025-06-16T22:32:16.707Z","updated_at":"2026-02-17T16:04:27.280Z","avatar_url":"https://github.com/cetic.png","language":"Smarty","funding_links":[],"categories":["Smarty"],"sub_categories":[],"readme":"# A Helm Chart for DRY microservice deployments\n\n[![CircleCI](https://circleci.com/gh/cetic/helm-microservice.svg?style=svg)](https://circleci.com/gh/cetic/helm-microservice/tree/master) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![version](https://img.shields.io/github/tag/cetic/helm-microservice.svg?label=release)\n\n## Introduction\n\nThis helm chart deploys a deployment, with a series of services and ingresses for a given container, hosting a web service with the following properties:\n\n- Configuration from environment variables\n- exposes a number of ports, dependent on the container\n\nThe chart exposes port 8000 over http by default, with a load balancing service, but the ports and services are configured from a list of arbitrary length in the values file.\n\nSimilarly, the environment variables are injected from a definition list, of arbitrary length.\n\nThe goal is to provide a DRY microservice deployment mechanism with some flexibility, to be used with some other charts orchestrating a series of microservices via a requirement file, pointing to this chart, where each instance of this chart is differenciated using aliases.\n\nThe federating chart will provide the configuration for each microservices in its values file.\n\n## Prerequisites\n\n- Kubernetes cluster 1.10+\n- Helm 3.0.0+\n- PV provisioner support in the underlying infrastructure.\n\n## Installation\n\n### Add Helm repository\n\n```bash\nhelm repo add cetic https://cetic.github.io/helm-charts\nhelm repo update\n```\n\n### Configure the chart\n\nThe following items can be set via `--set` flag during installation or configured by editing the `values.yaml` directly (need to download the chart first).\n\n#### Configure the way how to expose the microservice service:\n\n- **Ingress**: The ingress controller must be installed in the Kubernetes cluster.\n- **ClusterIP**: Exposes the service on a cluster-internal IP. Choosing this value makes the service only reachable from within the cluster.\n- **NodePort**: Exposes the service on each Node’s IP at a static port (the NodePort). You’ll be able to contact the NodePort service, from outside the cluster, by requesting `NodeIP:NodePort`.\n- **LoadBalancer**: Exposes the service externally using a cloud provider’s load balancer.\n\n#### Configurations\n\nFor other configurations, please see the [values.yaml](values.yaml) file. This file lists the configurable parameters of the microservice chart and the default values.\n\n### Install the chart\n\nInstall the microservice helm chart with a release name `my-release`:\n\n```bash\nhelm install my-release cetic/microservice\n```\n\n## Uninstallation\n\nTo uninstall/delete the `my-release` deployment:\n\n```bash\nhelm uninstall my-release\n```\n\n## Contributing\n\nFeel free to contribute by making a [pull request](https://github.com/cetic/helm-microservice/pull/new/master).\n\nPlease read the official [Contribution Guide](https://github.com/helm/charts/blob/master/CONTRIBUTING.md) from Helm for more information on how you can contribute to this Chart.\n\n## License\n\n[Apache License 2.0](/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcetic%2Fhelm-microservice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcetic%2Fhelm-microservice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcetic%2Fhelm-microservice/lists"}