Skip to content

Commit

Permalink
Test reduction in nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
mbzomowski committed Sep 27, 2023
1 parent cc868af commit e8820bd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tpu-ci/gke.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ variable "gke_password" {
}

variable "gke_num_nodes" {
default = 3
default = 2
description = "number of gke nodes"
}

Expand Down
15 changes: 15 additions & 0 deletions tpu-ci/secret.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,18 @@ resource "kubernetes_secret" "github-pat" {
github_token = var.GITHUB_TOKEN
}
}

resource "kubernetes_secret" "github-pat-flux" {
metadata {
name = "github-pat"
namespace = "flux-system"
}
depends_on = [
helm_release.arc-runner-set
]

data = {
github_token = var.GITHUB_TOKEN
}
}

0 comments on commit e8820bd

Please sign in to comment.