Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 91bf9ef

Browse files
committed
Bump versions
1 parent bc85b06 commit 91bf9ef

File tree

16 files changed

+67
-38
lines changed

16 files changed

+67
-38
lines changed

.github/workflows/cicd_pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020

2121
env:
2222
TFSEC_VERSION: "v1.28.1"
23-
TFLINT_VERSION: "v0.42.2"
23+
TFLINT_VERSION: "v0.46.0"
2424

2525
jobs:
2626

terraform/aws/env/.terraform.lock.hcl

+17-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

terraform/aws/env/main.tf

+2
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ module "cert-manager" {
204204
}
205205

206206
module "label-studio" {
207+
count = var.deploy_label_studio ? 1 : 0
208+
207209
source = "../../common/modules/label-studio"
208210

209211
name = local.name_prefix

terraform/aws/env/variables.tf

+7-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ variable "label_studio_helm_chart_name" {
157157
variable "label_studio_helm_chart_version" {
158158
description = "Label Studio Helm chart version"
159159
type = string
160-
default = "1.0.3"
160+
default = "1.0.16"
161161
}
162162

163163
# Label Studio Docker registry
@@ -195,6 +195,12 @@ variable "enterprise" {
195195
default = false
196196
}
197197

198+
variable "deploy_label_studio" {
199+
description = "Include Label Studio module?"
200+
type = bool
201+
default = true
202+
}
203+
198204
variable "license_literal" {
199205
description = "License link for enterprise Label Studio"
200206
type = string

terraform/aws/env/version.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = "= 4.61.0"
7+
version = "= 4.63.0"
88
}
99
helm = {
1010
source = "hashicorp/helm"

terraform/aws/examples/enterprise.tfvars

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ enterprise = true
1717
license_literal = "<SECRET>"
1818

1919
# Docker private registry credentials
20-
label_studio_registry_username = "<SECRET>"
21-
label_studio_registry_password = "<SECRET>"
20+
label_studio_docker_registry_username = "<SECRET>"
21+
label_studio_docker_registry_password = "<SECRET>"
2222

2323
# Redis
2424
redis_type = "elasticache"

terraform/aws/examples/enterprise_external_redis.tfvars

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ enterprise = true
1717
license_literal = "<SECRET>"
1818

1919
# Docker private registry credentials
20-
label_studio_registry_username = "<SECRET>"
21-
label_studio_registry_password = "<SECRET>"
20+
label_studio_docker_registry_username = "<SECRET>"
21+
label_studio_docker_registry_password = "<SECRET>"
2222

2323
# Redis
2424
redis_type = "external"

terraform/aws/examples/enterprise_external_redis_ssl.tfvars

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ enterprise = true
1717
license_literal = "<SECRET>"
1818

1919
# Docker private registry credentials
20-
label_studio_registry_username = "<SECRET>"
21-
label_studio_registry_password = "<SECRET>"
20+
label_studio_docker_registry_username = "<SECRET>"
21+
label_studio_docker_registry_password = "<SECRET>"
2222

2323
# Redis
2424
redis_type = "external"

terraform/aws/modules/eks/addons.tf

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
locals {
22
addon_versions = {
3-
"coredns" = "v1.8.7-eksbuild.3"
4-
"kube-proxy" = "v1.24.7-eksbuild.2"
5-
"vpc_cni" = "v1.12.0-eksbuild.1"
6-
"aws_ebs_csi_driver" = "v1.13.0-eksbuild.1"
3+
"coredns" = "v1.9.3-eksbuild.2"
4+
"kube-proxy" = "v1.26.2-eksbuild.1"
5+
"vpc_cni" = "v1.12.6-eksbuild.1"
6+
"aws_ebs_csi_driver" = "v1.17.0-eksbuild.1"
77
}
88
}
99

terraform/aws/modules/eks/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ variable "instance_profile_name" {
4949
variable "cluster_version" {
5050
description = "Version of the EKS cluster"
5151
type = string
52-
default = "1.24"
52+
default = "1.26"
5353
}
5454

5555
variable "instance_type" {

terraform/aws/modules/load-balancer-controller/main.tf

+22
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,28 @@ resource "aws_iam_policy" "this" {
235235
}
236236
}
237237
},
238+
{
239+
"Effect": "Allow",
240+
"Action": [
241+
"elasticloadbalancing:AddTags"
242+
],
243+
"Resource": [
244+
"arn:aws:elasticloadbalancing:*:*:targetgroup/*/*",
245+
"arn:aws:elasticloadbalancing:*:*:loadbalancer/net/*/*",
246+
"arn:aws:elasticloadbalancing:*:*:loadbalancer/app/*/*"
247+
],
248+
"Condition": {
249+
"StringEquals": {
250+
"elasticloadbalancing:CreateAction": [
251+
"CreateTargetGroup",
252+
"CreateLoadBalancer"
253+
]
254+
},
255+
"Null": {
256+
"aws:RequestTag/elbv2.k8s.aws/cluster": "false"
257+
}
258+
}
259+
},
238260
{
239261
"Effect": "Allow",
240262
"Action": [

terraform/aws/modules/load-balancer-controller/variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ variable "cluster_name" {
2323

2424
variable "helm_chart_version" {
2525
type = string
26-
default = "1.4.6"
27-
description = "Metrics Server Helm chart version"
26+
default = "1.5.0"
27+
description = "AWS Load Balancer Helm chart version"
2828
}
2929

3030
variable "helm_chart_release_name" {

terraform/common/modules/cert-manager/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ variable "helm_chart_name" {
1919
variable "helm_chart_version" {
2020
description = "Cert-manager Helm chart version."
2121
type = string
22-
default = "1.10.1"
22+
default = "1.11.1"
2323
}
2424

2525
variable "namespace" {

terraform/common/modules/label-studio/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ variable "helm_chart_release_name" {
2323
variable "helm_chart_version" {
2424
description = "Label Studio Helm chart version"
2525
type = string
26-
default = "1.0.3"
26+
default = "1.0.16"
2727
}
2828

2929
variable "helm_chart_repo" {

terraform/common/modules/metrics-server/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ variable "helm_chart_release_name" {
1818
variable "helm_chart_version" {
1919
description = "Metrics Server Helm chart version"
2020
type = string
21-
default = "6.2.3"
21+
default = "6.2.15"
2222
}
2323

2424
variable "helm_chart_repo" {

terraform/common/modules/nginx-ingress-controller/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ variable "helm_chart_name" {
1919
variable "helm_chart_version" {
2020
description = "Metrics Server Helm chart version"
2121
type = string
22-
default = "4.1.4"
22+
default = "4.6.0"
2323
}
2424

2525
variable "namespace" {

0 commit comments

Comments
 (0)