Skip to content

Commit

Permalink
chore: terraform updates (#812)
Browse files Browse the repository at this point in the history
bump terraform module versions, kaito workspace version, and
gpu-provisioner chart url fix
  • Loading branch information
pauldotyu authored Jan 9, 2025
1 parent b7d8dff commit d2b3ccd
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 47 deletions.
84 changes: 42 additions & 42 deletions terraform/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion terraform/kaito.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "azurerm_federated_identity_credential" "kaito" {
# Install the gpu-provisioner chart
resource "helm_release" "gpu_provisioner" {
name = "gpu-provisioner"
chart = "https://raw.githubusercontent.com/kaito-project/kaito/refs/heads/gh-pages/charts/kaito/gpu-provisioner-${var.kaito_gpu_provisioner_version}.tgz"
chart = "https://raw.githubusercontent.com/Azure/gpu-provisioner/refs/heads/gh-pages/charts/gpu-provisioner-${var.kaito_gpu_provisioner_version}.tgz"
namespace = "gpu-provisioner"
create_namespace = true

Expand Down
6 changes: 3 additions & 3 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=4.5.0"
version = "=4.14.0"
}

random = {
Expand All @@ -12,12 +12,12 @@ terraform {

kubernetes = {
source = "hashicorp/kubernetes"
version = "=2.33.0"
version = "=2.35.1"
}

helm = {
source = "hashicorp/helm"
version = "=2.16.1"
version = "=2.17.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variable "kaito_gpu_provisioner_version" {

variable "kaito_workspace_version" {
type = string
default = "0.3.2"
default = "0.4.1"
description = "kaito workspace version"
}

Expand Down

0 comments on commit d2b3ccd

Please sign in to comment.