{"id":19489086,"url":"https://github.com/vladimirvivien/kob","last_synced_at":"2026-04-15T20:02:49.333Z","repository":{"id":153917563,"uuid":"631087406","full_name":"vladimirvivien/kob","owner":"vladimirvivien","description":"kob simplifies the programmatic construction of Kubernetes API object graphs","archived":false,"fork":false,"pushed_at":"2023-10-11T23:37:28.000Z","size":22,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-01T16:14:01.227Z","etag":null,"topics":["go","golang","kubernetes","kubernetes-api"],"latest_commit_sha":null,"homepage":"","language":"Go","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/vladimirvivien.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-21T22:37:58.000Z","updated_at":"2023-07-07T16:16:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"d2fa1527-228a-4124-86e4-fae8ecdd2ab6","html_url":"https://github.com/vladimirvivien/kob","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/vladimirvivien/kob","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladimirvivien%2Fkob","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladimirvivien%2Fkob/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladimirvivien%2Fkob/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladimirvivien%2Fkob/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vladimirvivien","download_url":"https://codeload.github.com/vladimirvivien/kob/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladimirvivien%2Fkob/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31857625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"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":["go","golang","kubernetes","kubernetes-api"],"created_at":"2024-11-10T21:07:18.018Z","updated_at":"2026-04-15T20:02:49.318Z","avatar_url":"https://github.com/vladimirvivien.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kob 🦌 \nKubernetes Object Builder\n\nProject `kob` uses a builder pattern to simplify the construction and composition of Kubernetes API object graphs. It provides helper constructors to reduce typing and insert sensible defaults where needed.\n\n### Example\n\nThe following:\n\n```go\ndeployment.Object(objmeta.Name(\"simple-dep\")).Replicas(3).Strategy(StrategyDefault).PodSpec(container.Name(\"simple-container\"))\n```\nProduces an Deployment object equivalent to the following:\n\n```go\nreps := int32(3)\nappsV1.Deployment{\n\tObjectMeta: metaV1.ObjectMeta{Name: \"simple-dep\"},\n\tSpec: appsV1.DeploymentSpec{\n\t\tReplicas: \u0026reps,\n\t\tStrategy: appsV1.DeploymentStrategy{\n\t\t\tType: appsV1.RecreateDeploymentStrategyType,\n\t\t},\n\t\tTemplate: coreV1.PodTemplateSpec{\n\t\t\tSpec: coreV1.PodSpec{\n\t\t\t\tContainers: []coreV1.Container{\n\t\t\t\t\t{Name: \"simple-container\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t},\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvladimirvivien%2Fkob","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvladimirvivien%2Fkob","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvladimirvivien%2Fkob/lists"}