Skip to content

Commit

Permalink
Create Performance Cluster 1.28 (#3720)
Browse files Browse the repository at this point in the history
* Create Performance Cluster 1.28
* Update the k8s version update doc
  • Loading branch information
Kalaiselvi84 authored Mar 19, 2024
1 parent a618a46 commit 8685515
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/kubernetes_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ List of items to do for upgrading to {version_1} {version_2} {version_3}
- [ ] In `build/terraform/e2e/module.tf`, continue following the instructions in the comment to update the `kubernetes_versions` map.
- [ ] Destroy the old clusters with new scripts: `cd build; make GCP_PROJECT=agones-images gcloud-e2e-test-cluster`
- [ ] Recreate the performance test cluster, and config the performance test to run on the new cluster
- [ ] In `build/terraform/performance/module.tf`, update the `kubernetes_versions` to {version_2} and its corresponding region.
- [ ] In `build/terraform/performance/module.tf`, update the `kubernetes_versions` to {version_2} and make sure the region is always set to `us-central1`.
- [ ] Recreate the cluster with the new script:
```
cd build; make shell; cd build/terraform/performance
terraform init -backend-config="bucket=agones-images-performance-infra-bucket-tfstate" -backend-config="prefix=terraform/state"
terraform apply -var project="agones-images"
```
- [ ] Update the `_TEST_CLUSTER_NAME` in `ci/perf-test-cloudbuild.yaml` to the name of the new created performance test cluster.
- [ ] Update the `_TEST_CLUSTER_NAME` in `ci/perf-test-cloudbuild.yaml` to the name of the new created performance test cluster, and send a PR with the changes.
2 changes: 1 addition & 1 deletion build/terraform/performance/module.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ variable "kubernetes_versions" {
description = "Create performance test clusters with these k8s versions in these regions"
type = map(list(string))
default = {
"1.27" = ["us-central1", "REGULAR"]
"1.28" = ["us-central1", "RAPID"]
}
}

Expand Down
2 changes: 1 addition & 1 deletion ci/perf-test-cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ steps:
- tag-build-image

substitutions:
_TEST_CLUSTER_NAME: standard-performance-test-cluster-1-27
_TEST_CLUSTER_NAME: standard-performance-test-cluster-1-28
_TEST_CLUSTER_LOCATION: us-central1
_REGISTRY: us-docker.pkg.dev/agones-images/ci
_TEST_PROJECT_ID: agones-images
Expand Down

0 comments on commit 8685515

Please sign in to comment.