feat: add GKE DevOps benchmark tasks for M1 Milestone (CUJ 1, 2 and 3)#86
Draft
jayantid wants to merge 7 commits into
Draft
feat: add GKE DevOps benchmark tasks for M1 Milestone (CUJ 1, 2 and 3)#86jayantid wants to merge 7 commits into
jayantid wants to merge 7 commits into
Conversation
jessie1111101
added a commit
that referenced
this pull request
Jun 25, 2026
Stacked on #132 (skills/agent-skills). Each matrix combo provisions its own cluster; this makes every task collision-free under concurrent runs: - 6 manifest-gen tasks -> deployer: noop (no cluster); legacy factory honors noop - optimize-scale: new prebuilt/optimize-scale GKE stack + pre-seeded workload; matrix pins TARGET_DEPLOYMENT_NAME/NAMESPACE so both arms agree - deploy-hello-app: run-unique Artifact Registry repo name - per-run tofu stack-dir copy (both arms) removes the shared .terraform.lock race (resolves the 'Shared OpenTofu working directory' known-issue) - import + parallel-fix the merged complex/GKE tasks (#64 migration, #87 opa, #93 multi-region, #86 postgres/unhealthy/gitops, #76 debug-crashloop): per-run GitOps repo paths, dropped shared-SA container.admin (BYO creds), region-prefixed cluster names (avoid node-SA substr collision), unique task_id - cp-recovery documented as the kind-only exception (docs/bastion.md)
pradeepvrd
pushed a commit
that referenced
this pull request
Jun 26, 2026
Stacked on #132 (skills/agent-skills). Each matrix combo provisions its own cluster; this makes every task collision-free under concurrent runs: - 6 manifest-gen tasks -> deployer: noop (no cluster); legacy factory honors noop - optimize-scale: new prebuilt/optimize-scale GKE stack + pre-seeded workload; matrix pins TARGET_DEPLOYMENT_NAME/NAMESPACE so both arms agree - deploy-hello-app: run-unique Artifact Registry repo name - per-run tofu stack-dir copy (both arms) removes the shared .terraform.lock race (resolves the 'Shared OpenTofu working directory' known-issue) - import + parallel-fix the merged complex/GKE tasks (#64 migration, #87 opa, #93 multi-region, #86 postgres/unhealthy/gitops, #76 debug-crashloop): per-run GitOps repo paths, dropped shared-SA container.admin (BYO creds), region-prefixed cluster names (avoid node-SA substr collision), unique task_id - cp-recovery documented as the kind-only exception (docs/bastion.md)
pradeepvrd
pushed a commit
that referenced
this pull request
Jun 26, 2026
Stacked on #132 (skills/agent-skills). Each matrix combo provisions its own cluster; this makes every task collision-free under concurrent runs: - 6 manifest-gen tasks -> deployer: noop (no cluster); legacy factory honors noop - optimize-scale: new prebuilt/optimize-scale GKE stack + pre-seeded workload; matrix pins TARGET_DEPLOYMENT_NAME/NAMESPACE so both arms agree - deploy-hello-app: run-unique Artifact Registry repo name - per-run tofu stack-dir copy (both arms) removes the shared .terraform.lock race (resolves the 'Shared OpenTofu working directory' known-issue) - import + parallel-fix the merged complex/GKE tasks (#64 migration, #87 opa, #93 multi-region, #86 postgres/unhealthy/gitops, #76 debug-crashloop): per-run GitOps repo paths, dropped shared-SA container.admin (BYO creds), region-prefixed cluster names (avoid node-SA substr collision), unique task_id - cp-recovery documented as the kind-only exception (docs/bastion.md)
pradeepvrd
pushed a commit
that referenced
this pull request
Jun 26, 2026
Stacked on #132 (skills/agent-skills). Each matrix combo provisions its own cluster; this makes every task collision-free under concurrent runs: - 6 manifest-gen tasks -> deployer: noop (no cluster); legacy factory honors noop - optimize-scale: new prebuilt/optimize-scale GKE stack + pre-seeded workload; matrix pins TARGET_DEPLOYMENT_NAME/NAMESPACE so both arms agree - deploy-hello-app: run-unique Artifact Registry repo name - per-run tofu stack-dir copy (both arms) removes the shared .terraform.lock race (resolves the 'Shared OpenTofu working directory' known-issue) - import + parallel-fix the merged complex/GKE tasks (#64 migration, #87 opa, #93 multi-region, #86 postgres/unhealthy/gitops, #76 debug-crashloop): per-run GitOps repo paths, dropped shared-SA container.admin (BYO creds), region-prefixed cluster names (avoid node-SA substr collision), unique task_id - cp-recovery documented as the kind-only exception (docs/bastion.md)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR adds three new benchmark tasks to evaluate GKE-focused operations agents against the M1 Milestone requirements. It also introduces two new prebuilt infrastructure stacks to support troubleshooting and GitOps scenario setups.
New Tasks Added
1. Deploy Postgres-Backed Web App (CUJ 1: Deploy via NL)
tasks/gcp/deploy-postgres-web-app/task.yamlrunAsNonRoot: true,allowPrivilegeEscalation: false).2. Troubleshoot Unhealthy Pod (CUJ 2: Pod RCA)
tasks/gcp/troubleshoot-unhealthy-pod/task.yamlCreateContainerConfigError) of the frontend service in the target namespace.frontend-config) and missing key (api-url).frontend-configwith theapi-urlkey.3. GitOps Auto-Revert (CUJ 3: Manage Cluster Config)
tasks/gcp/gitops-auto-revert/task.yamlhello-appis failing due toImagePullBackOff(invalid image tag)./app/results/gitops-repoto find the last working image tag (1.0).fix-hello-app) and modifies the manifest to revert the image tag back to1.0.Infrastructure Changes (tf/)
tf/prebuilt/unhealthy-podstack:frontendpod referencing a missing ConfigMap to triggerCreateContainerConfigError.tf/prebuilt/gitops-revertstack:hello-apppod with an invalid image tag.null_resourceto initialize a local Git repository at/app/results/gitops-repowith the mock commit history (v1.0 working -> v2.0-broken).Both stacks support dynamic namespaces via OpenTofu variables.
Testing Locally
You can run these tasks locally using the
devops-benchrunner by pointing to the task configs: