upgrade-kube-agents · git:20260820.1c06e1a · 2026-08-20 · sha256 e924ae7852840b09
upgrade-kube-agents git:20260820.1c06e1aB
Immutable. This exact content is served forever at /api/v1/blob/e924ae7852840b09.
--- name: upgrade-kube-agents description: Perform non-interactive or interactive Day-2 upgrades of the Kubernetes Agentic Harness and operator on GKE clusters. --- # Upgrade Kubernetes Agentic Harness (kube-agents) Use this skill when asked to upgrade the `kube-agents` Platform Agent or operator on an active GKE cluster. ## One-Liner Execution Mode (Non-Interactive) To non-interactively upgrade `kube-agents` on a GKE cluster, run the one-liner **from the directory holding the original install checkout** — the upgrade refuses to proceed without the saved `k8s-operator/scripts/vars.sh` configuration state, because a full upgrade re-renders the whole install (the `PlatformAgent` CR included) from it: ```bash curl -fsSL https://gke-labs.github.io/kube-agents/upgrade.sh | bash -s -- \ --upgrade-mode="full" \ --non-interactive \ --project-id="<PROJECT_ID>" \ --cluster-name="<CLUSTER_NAME>" \ --region="<REGION>" \ --image-tag="<SEMVER_TAG_OR_FULL_COMMIT_SHA>" ``` ## Upgrade Modes - `--upgrade-mode=harness`: `helm upgrade --reuse-values` re-tagging only the Platform Agent image (`platformAgent.deployment.image.tag`). - `--upgrade-mode=operator`: applies the chart's CRDs with `kubectl` first (Helm never touches `crds/` on upgrade), then `helm upgrade --reuse-values` re-tagging only the operator image. - `--upgrade-mode=full` (Default): applies the CRDs, then runs a full `terraform apply` at the new `--image-tag` through the install engine — both image tags move and every setting saved in `vars.sh` is re-rendered. This mode additionally requires the `terraform` CLI. Every mode requires the `kube-agents` Helm release to exist in the target namespace. An install without one predates the Terraform + Helm engine: upgrade it with the release that installed it (curl the matching versioned `upgrade.sh`), or re-install with `install.sh` to adopt the new engine. ## Dry-Run Mode To preview the upgrade plan and output a JSON status report without modifying cloud resources: ```bash ./upgrade.sh --dry-run --upgrade-mode=full \ --project-id="<PROJECT_ID>" \ --image-tag="<SEMVER_TAG_OR_FULL_COMMIT_SHA>" ``` Machine-readable JSON status reports are generated at `/tmp/kube-agents-upgrade-report.json`. `--image-tag` is required in every mode. Use a SemVer release tag or the full 40-character commit SHA behind a validated RC tag; mutable refs such as `latest` and `main` are rejected so the upgrade scripts and container images stay on the same revision.