Skip to content

Commit

Permalink
add wandb_replicas logic for gke app
Browse files Browse the repository at this point in the history
  • Loading branch information
adityachoudhari26 committed Feb 12, 2024
1 parent e90f770 commit 40c3073
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ locals {

module "gke_app" {
source = "wandb/wandb/kubernetes"
version = "1.13.0"
version = "1.14.1"

license = var.license

Expand All @@ -158,8 +158,9 @@ module "gke_app" {
"GORILLA_GLUE_LIST" = var.enable_operator
}, var.other_wandb_env)

wandb_image = var.wandb_image
wandb_version = var.wandb_version
wandb_image = var.wandb_image
wandb_version = var.wandb_version
wandb_replicas = var.enable_operator ? 0 : 1

resource_limits = var.resource_limits
resource_requests = var.resource_requests
Expand Down

0 comments on commit 40c3073

Please sign in to comment.