diff --git a/tpu-ci/configmap.yaml b/tpu-ci/configmap.yaml index 3709eb0afbf..44e4f518e1e 100644 --- a/tpu-ci/configmap.yaml +++ b/tpu-ci/configmap.yaml @@ -1,4 +1,4 @@ secretName: github-pat -resources: -- namespace: "flux-system" -- namespace: "arc-system" +resources: |- + - namespace: "flux-system" + - namespace: "arc-system" diff --git a/tpu-ci/helm.tf b/tpu-ci/helm.tf index 5cbcad92952..b06a5bedf81 100644 --- a/tpu-ci/helm.tf +++ b/tpu-ci/helm.tf @@ -52,12 +52,13 @@ resource "helm_release" "flux" { resource "helm_release" "tf-controller" { name = "tf-controller" - repository = "https://weaveworks.github.io/tf-controller/" + repository = "oci://ghcr.io/weaveworks/charts" chart = "tf-controller" namespace = var.flux_namespace depends_on = [ helm_release.flux ] + version = "0.16.0-rc.3" values = [ "${file("tf-controller-values.yaml")}" ] diff --git a/tpu-ci/k8s.tf b/tpu-ci/k8s.tf index 174393b3b77..64d6e65545c 100644 --- a/tpu-ci/k8s.tf +++ b/tpu-ci/k8s.tf @@ -50,14 +50,3 @@ resource "kubernetes_manifest" "flux-terraform" { helm_release.tf-controller ] } - -resource "kubernetes_config_map" "configmap" { - metadata { - name = "branch-planner" - namespace = "flux-system" - } - - data = { - "configmap.yaml" = "${file("${path.module}/configmap.yaml")}" - } -} diff --git a/tpu-ci/tf-controller-values.yaml b/tpu-ci/tf-controller-values.yaml index e7c2e8c26b1..8f0edd308a3 100644 --- a/tpu-ci/tf-controller-values.yaml +++ b/tpu-ci/tf-controller-values.yaml @@ -10,13 +10,9 @@ resources: caCertValidityDuration: 24h certRotationCheckFrequency: 30m image: - tag: v0.16.0-rc.2 + tag: v0.16.0-rc.3 runner: image: - tag: v0.16.0-rc.2 + tag: v0.16.0-rc.3 grpc: maxMessageSize: 30 -branchPlanner: - enabled: true - image: - tag: v0.16.0-rc.2