{"id":21995366,"url":"https://github.com/blinklabs-io/helm-charts","last_synced_at":"2025-10-10T23:30:29.063Z","repository":{"id":218392609,"uuid":"746270027","full_name":"blinklabs-io/helm-charts","owner":"blinklabs-io","description":"Charts for deploying UTxO based blockchain services to Kubernetes using Helm","archived":false,"fork":false,"pushed_at":"2025-10-02T01:05:32.000Z","size":359,"stargazers_count":2,"open_issues_count":8,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-02T02:28:24.327Z","etag":null,"topics":["cardano","cardano-node","handshake","helm-charts","kubernetes"],"latest_commit_sha":null,"homepage":"","language":"Mustache","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/blinklabs-io.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":".github/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":"2024-01-21T15:22:44.000Z","updated_at":"2025-10-01T20:19:14.000Z","dependencies_parsed_at":"2024-08-14T00:31:18.526Z","dependency_job_id":"c3bfe4a8-f81e-4e94-b78c-797b805e614f","html_url":"https://github.com/blinklabs-io/helm-charts","commit_stats":{"total_commits":52,"total_committers":4,"mean_commits":13.0,"dds":"0.15384615384615385","last_synced_commit":"d6e0276af1df8825802bc051c4a50a30dcae0435"},"previous_names":["blinklabs-io/helm-charts"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/blinklabs-io/helm-charts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blinklabs-io%2Fhelm-charts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blinklabs-io%2Fhelm-charts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blinklabs-io%2Fhelm-charts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blinklabs-io%2Fhelm-charts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blinklabs-io","download_url":"https://codeload.github.com/blinklabs-io/helm-charts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blinklabs-io%2Fhelm-charts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005573,"owners_count":26083919,"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","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cardano","cardano-node","handshake","helm-charts","kubernetes"],"created_at":"2024-11-29T21:14:35.592Z","updated_at":"2025-10-10T23:30:29.050Z","avatar_url":"https://github.com/blinklabs-io.png","language":"Mustache","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Helm-charts\n\n## ✅ Prerequisites\n\nBefore using these charts, ensure you have the following installed and configured:\n\n- **[Helm 3.8+](https://helm.sh/docs/intro/install/)**\n  Helm is the package manager for Kubernetes.\n\n- **A running Kubernetes cluster**\n  This can be local (e.g. [Minikube](https://minikube.sigs.k8s.io/), [kind](https://kind.sigs.k8s.io/)) or provided by a cloud provider (e.g. GKE, EKS, AKS).\n\n- **`kubectl` configured**\n  Helm interacts with your cluster using `kubectl`. You should be able to run:\n\n  ```bash\n  kubectl get nodes\n  ```\n\n  and see your cluster nodes.\n\n## How to use helm-charts\n\n\u003e 🧊 **Note:** OCI charts do **not** require `helm repo add`. You can install them directly from an OCI registry using the `oci://` URL format.\n\u003e 📚 [Learn more in the Helm docs](https://helm.sh/docs/topics/registries/#using-an-oci-based-registry)\n\n### Install the chart\n\n```bash\n# Install the chart with default values latest or specific version of the chart\n\n# Latest version\nhelm install \u003crelease-name\u003e oci://ghcr.io/blinklabs-io/helm-charts/charts/\u003cchart-name\u003e\n\n# Version spcific\nhelm install \u003crelease-name\u003e oci://ghcr.io/blinklabs-io/helm-charts/charts/\u003cchart-name\u003e \\\n  --version \u003cchart-version\u003e\n\nExample:\nhelm install dingo oci://ghcr.io/blinklabs-io/helm-charts/charts/dingo \\\n  --version 0.0.6\n```\n\n### Preview the chart with default and custom values\n\n```bash\nhelm template oci://ghcr.io/blinklabs-io/helm-charts/charts/\u003cchart-name\u003e \\\n  --version \u003cchart-version\u003e\n\nhelm template dingo oci://ghcr.io/blinklabs-io/helm-charts/charts/dingo \\\n  --version 0.0.6\n\n# Preview the chart with custom values\nhelm template oci://ghcr.io/blinklabs-io/helm-charts/charts/\u003cchart-name\u003e \\\n  --version \u003cchart-version\u003e \\\n  -f \u003ccustom-values-file\u003e\n\nExample:\nhelm template dingo oci://ghcr.io/blinklabs-io/helm-charts/charts/dingo \\\n  --version 0.0.6 \\\n  -f values.yaml\n```\n\n### Pull the chart\n\n```bash\n# Pull the chart with default values\nhelm pull oci://ghcr.io/blinklabs-io/helm-charts/charts/\u003cchart-name\u003e \\\n  --version \u003cchart-version\u003e\n\nExample:\nhelm pull oci://ghcr.io/blinklabs-io/helm-charts/charts/dingo \\\n  --version 0.0.6\n\n# Pull the chart and unpack it\nhelm pull oci://ghcr.io/blinklabs-io/helm-charts/charts/\u003cchart-name\u003e \\\n  --version \u003cchart-version\u003e \\\n  --untar\n\nExample:\nhelm pull oci://ghcr.io/blinklabs-io/helm-charts/charts/dingo \\\n  --version 0.0.6 \\\n  --untar\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblinklabs-io%2Fhelm-charts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblinklabs-io%2Fhelm-charts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblinklabs-io%2Fhelm-charts/lists"}