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
3 changes: 1 addition & 2 deletions deployments/stacks/dpe-k8s-deployments/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ locals {
git_revision = var.git_revision
}
module "sage-aws-eks-autoscaler" {
source = "spacelift.io/sagebionetworks/sage-aws-eks-autoscaler/aws"
version = "0.9.0"
source = "../../../modules/sage-aws-k8s-node-autoscaler"
cluster_name = var.cluster_name
private_vpc_subnet_ids = var.private_subnet_ids_eks_worker_nodes
vpc_id = var.vpc_id
Expand Down
3 changes: 2 additions & 1 deletion modules/sage-aws-k8s-node-autoscaler/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ resource "helm_release" "ocean-kubernetes-controller" {

module "ocean-aws-k8s" {
source = "spotinst/ocean-aws-k8s/spotinst"
version = "1.4.0"
version = "1.11.0"

# Configuration
cluster_name = var.cluster_name
Expand Down Expand Up @@ -148,3 +148,4 @@ module "ocean-aws-k8s" {
virtualization_types = null
}
}

4 changes: 2 additions & 2 deletions modules/sage-aws-k8s-node-autoscaler/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ terraform {
version = "~> 2.0"
}
spotinst = {
source = "spotinst/spotinst"
version = "1.172.0" # Specify the version you wish to use
source = "opentofu/spotinst"
version = "1.225.0" # Specify the version you wish to use
}
helm = {
source = "hashicorp/helm"
Expand Down