{"id":49897607,"url":"https://github.com/imp/gke-pullup-rs","last_synced_at":"2026-05-16T01:05:06.487Z","repository":{"id":354150858,"uuid":"1217022386","full_name":"imp/gke-pullup-rs","owner":"imp","description":"GKE cluster K8s version pullup","archived":false,"fork":false,"pushed_at":"2026-04-27T10:36:48.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-27T12:05:28.134Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/imp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2026-04-21T13:19:02.000Z","updated_at":"2026-04-27T10:33:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/imp/gke-pullup-rs","commit_stats":null,"previous_names":["imp/gke-pullup-rs"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/imp/gke-pullup-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imp%2Fgke-pullup-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imp%2Fgke-pullup-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imp%2Fgke-pullup-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imp%2Fgke-pullup-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imp","download_url":"https://codeload.github.com/imp/gke-pullup-rs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imp%2Fgke-pullup-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33086773,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:25:35.270Z","status":"ssl_error","status_checked_at":"2026-05-15T20:25:34.732Z","response_time":103,"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":[],"created_at":"2026-05-16T01:05:05.818Z","updated_at":"2026-05-16T01:05:06.480Z","avatar_url":"https://github.com/imp.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gke-pullup\n\nA command-line tool to upgrade GKE (Google Kubernetes Engine) clusters to the\nlatest Kubernetes version compatible with their release channel.\n\n## Features\n\n- Upgrades both the cluster master and all node pools in one command\n- Supports upgrading only the master, only specific node pools, or all node pools\n- Respects the cluster's configured release channel (Rapid, Regular, Stable)\n- Allows targeting a specific Kubernetes version or a specific release channel\n- Automatically fetches the GKE server config to validate versions before upgrading\n\n## Prerequisites\n\n- A Google Cloud project with at least one GKE cluster\n- Application Default Credentials configured (`gcloud auth application-default login`)\n\n## Installation\n\n```bash\ncargo install gke-pullup\n```\n\n## Usage\n\n```\ngke-pullup [OPTIONS] \u003cCOMMAND\u003e\n```\n\n### Global options\n\n| Option | Description |\n|---|---|\n| `--location \u003cLOCATION\u003e` | GCP location (region or zone) of the cluster. Defaults to `*` (all locations). |\n| `--project \u003cPROJECT\u003e` | GCP project ID. Defaults to `*` (all projects). |\n\n### Commands\n\n#### `pull-up`\n\nUpgrade a cluster to the latest version compatible with its release channel.\n\n```\ngke-pullup [--location \u003cLOCATION\u003e] [--project \u003cPROJECT\u003e] pull-up [OPTIONS] \u003cCLUSTER\u003e [TARGET]\n```\n\n| Argument / Option | Description |\n|---|---|\n| `\u003cCLUSTER\u003e` | Name of the GKE cluster to upgrade. |\n| `[TARGET]` | Optional target: a Kubernetes version string (e.g. `1.31.2-gke.100`) or a release channel name (`RAPID`, `REGULAR`, `STABLE`). Defaults to the upgrade target version for the cluster's own release channel. |\n| `--master` | Upgrade only the master control plane. |\n| `--node-pools [POOL,...]` | Upgrade node pools only. Without values, upgrades all node pools. With a comma-separated list, upgrades only the named pools. |\n\n`--master` and `--node-pools` are mutually exclusive. When neither is provided, both the master and all node pools are upgraded.\n\n### Examples\n\nUpgrade the cluster `my-cluster` (master + all node pools) to the latest version for its release channel:\n\n```bash\ngke-pullup --project my-project --location us-central1 pull-up my-cluster\n```\n\nUpgrade only the master of `my-cluster`:\n\n```bash\ngke-pullup --project my-project --location us-central1 pull-up --master my-cluster\n```\n\nUpgrade all node pools of `my-cluster` to the current master version:\n\n```bash\ngke-pullup --project my-project --location us-central1 pull-up --node-pools my-cluster\n```\n\nUpgrade specific node pools:\n\n```bash\ngke-pullup --project my-project --location us-central1 pull-up --node-pools pool-1,pool-2 my-cluster\n```\n\nUpgrade to a specific Kubernetes version:\n\n```bash\ngke-pullup --project my-project --location us-central1 pull-up my-cluster 1.31.2-gke.100\n```\n\nUpgrade to the latest version of the `RAPID` channel:\n\n```bash\ngke-pullup --project my-project --location us-central1 pull-up my-cluster RAPID\n```\n\n## License\n\nApache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimp%2Fgke-pullup-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimp%2Fgke-pullup-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimp%2Fgke-pullup-rs/lists"}