{"id":27235771,"url":"https://github.com/helmless/google-cloudrun-charts","last_synced_at":"2026-01-20T08:33:01.464Z","repository":{"id":284280995,"uuid":"954422895","full_name":"helmless/google-cloudrun-charts","owner":"helmless","description":"Helm charts for deploying Google Cloud Run Services and Jobs using Helmless.","archived":false,"fork":false,"pushed_at":"2025-07-02T17:39:59.000Z","size":4602,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-02T18:38:37.162Z","etag":null,"topics":["chart","cloudrun","google","helm","helmless"],"latest_commit_sha":null,"homepage":"https://helmless.io","language":"Smarty","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/helmless.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":"2025-03-25T04:02:36.000Z","updated_at":"2025-06-17T02:50:32.000Z","dependencies_parsed_at":"2025-03-25T05:19:13.450Z","dependency_job_id":"9097fb5c-0414-402d-93da-dfd3b65060e2","html_url":"https://github.com/helmless/google-cloudrun-charts","commit_stats":null,"previous_names":["helmless/google-cloudrun-charts"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/helmless/google-cloudrun-charts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmless%2Fgoogle-cloudrun-charts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmless%2Fgoogle-cloudrun-charts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmless%2Fgoogle-cloudrun-charts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmless%2Fgoogle-cloudrun-charts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/helmless","download_url":"https://codeload.github.com/helmless/google-cloudrun-charts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmless%2Fgoogle-cloudrun-charts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28599020,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"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":["chart","cloudrun","google","helm","helmless"],"created_at":"2025-04-10T16:59:24.494Z","updated_at":"2026-01-20T08:33:01.434Z","avatar_url":"https://github.com/helmless.png","language":"Smarty","readme":"\u003ca href=\"https://helmless.io\" target=\"_blank\"\u003e\n  \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\".github/helmless_title.png\"\u003e\n    \u003cimg alt=\"Helmless.io - Serverless Deployments Without Compromise\" src=\".github/helmless_title_light.png\"\u003e\n  \u003c/picture\u003e\n\u003c/a\u003e\n\n# Helmless Google Cloud Run Charts\n\n[![Cloud Run Service Chart GitHub Release](https://img.shields.io/github/v/release/helmless/google-cloudrun-charts?include_prereleases\u0026label=google-cloudrun-service\u0026color=blue)](https://github.com/helmless/google-cloudrun-charts/)\n[![Cloud Run Job Chart GitHub Release](https://img.shields.io/github/v/release/helmless/google-cloudrun-charts?include_prereleases\u0026label=google-cloudrun-job\u0026color=blue)](https://github.com/helmless/google-cloudrun-charts/)\n\nThese charts are used to deploy Google Cloud Run services and jobs using [Helmless](https://helmless.io). See the [Helmless documentation](https://helmless.io/docs/cloudrun) for more information.\n\n## 🚀 Getting Started\n\nSee the [Helmless documentation](https://helmless.io/docs/cloudrun/quickstart) for a 5min quickstart guide.\n\n## 📄 Charts\n\nThe charts are located in the `charts` folder. The `common` chart contains the common templates and functions that are used by the other charts.\n\nTo create a Helmless application chart, create a new chart and then add either the `service` or `job` chart as a dependency.\n\n```sh\nhelm create my-app\nrm -rf my-app/templates/*\n```\n\nAdd the following to the `Chart.yaml` file:\n\n```yaml\ndependencies:\n  - name: google-cloudrun-service\n    version: \"0.x.x\"\n    repository: oci://ghcr.io/helmless\n    alias: service\n  - name: google-cloudrun-job\n    version: \"0.x.x\"\n    repository: oci://ghcr.io/helmless\n    alias: job\n```\n\nThen run the following command to install the dependencies:\n\n```sh\nhelm dependency update\n```\n\nNow you can define your workloads in the `values.yaml` file.\n\n```yaml\nglobal:\n  project: my-project\n  region: us-central1\n\nenv: \u0026env\n  SHARED_ENV_VAR: shared-value\nsecrets: \u0026secrets\n  MY_SECRET: my-secret-key\n  MY_OTHER_SECRET:\n    secret: my-other-secret-key\n    version: 1\n\nservice:\n  name: my-service\n  image: gcr.io/my-project/my-service:v1\n  env:\n    \u003c\u003c: *env\n    MY_ENV_VAR: my-value\n  secrets:\n    \u003c\u003c: *secrets\njob:\n  name: my-job\n  image: gcr.io/my-project/my-job:v1\n  env:\n    \u003c\u003c: *env\n    MY_ENV_VAR: my-value\n  secrets:\n    \u003c\u003c: *secrets\n```\n\nSee the [documentation](https://helmless.io/docs/cloudrun/ci-cd) or the [helmless/google-cloudrun-action](https://github.com/helmless/google-cloudrun-action) for information on how to deploy your application using Github Actions.\n\n## 🤝🏻 Contributing\n\nSee the [CONTRIBUTING](CONTRIBUTING.md) file for information on how to contribute to Helmless. There is also a [general guide on the website](https://helmless.io/contributing).\n\n## ☑️ TODO\n\n- [ ] Add support for sidecars\n- [ ] Create sepereate repository for schema renderer and add mkdocs site to this repo to preview schema changes\n\n## 📝 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n---\n\n⭐ If you find Helmless useful, please consider giving it a star! It helps the project grow and improve.\n","funding_links":[],"categories":["\u003ca name=\"Smarty\"\u003e\u003c/a\u003eSmarty"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelmless%2Fgoogle-cloudrun-charts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelmless%2Fgoogle-cloudrun-charts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelmless%2Fgoogle-cloudrun-charts/lists"}