Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployment/clouddeploy/gke-indexer/clouddeploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ metadata:
name: staging-indexer
description: oss-vdb-test worker cluster
gke:
cluster: projects/oss-vdb-test/locations/us-central1-f/clusters/workers
cluster: projects/oss-vdb-test/locations/us-west2-b/clusters/workers
executionConfigs:
- usages:
- RENDER
Expand Down
2 changes: 1 addition & 1 deletion deployment/clouddeploy/gke-workers/clouddeploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ metadata:
name: staging-workers
description: oss-vdb-test worker cluster
gke:
cluster: projects/oss-vdb-test/locations/us-central1-f/clusters/workers
cluster: projects/oss-vdb-test/locations/us-west2-b/clusters/workers
executionConfigs:
- usages:
- RENDER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ metadata:
spec:
csi:
driver: pd.csi.storage.gke.io
volumeHandle: projects/oss-vdb-test/zones/us-central1-f/disks/gitter-disk
volumeHandle: projects/oss-vdb-test/zones/us-west2-b/disks/gitter-disk
fsType: ext4
11 changes: 6 additions & 5 deletions deployment/terraform/modules/osv_pipeline/wild_west.tf
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,12 @@ resource "google_container_node_pool" "highend_west" {

# 6TiB SSD disk used by the gitter caching service
resource "google_compute_disk" "gitter_disk_west" {
project = var.project_id
name = var.gitter_disk_name
type = "hyperdisk-balanced"
zone = google_container_cluster.workers_west.location
size = var.gitter_disk_size_gb
project = var.project_id
name = var.gitter_disk_name
type = "hyperdisk-balanced"
zone = google_container_cluster.workers_west.location
size = var.gitter_disk_size_gb
snapshot = "instant-snapshot-transfer-to-west-full"

lifecycle {
ignore_changes = [
Expand Down
Loading