Skip to content

Commit 7033316

Browse files
Remove liqo image tag as it is controlled in agent master chart
1 parent f002d87 commit 7033316

File tree

9 files changed

+0
-29
lines changed

9 files changed

+0
-29
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,6 @@ provider "castai" {
414414
| service_cidr | Service CIDR for network configuration | `string` | - | yes |
415415
| reserved_subnet_cidrs | List of reserved subnet CIDRs | `list(string)` | `[]` | no |
416416
| api_url | CAST AI API URL | `string` | `"https://api.cast.ai"` | no |
417-
| liqo_image_tag | Liqo image version tag | `string` | `"v1.0.1-6"` | no |
418417
| skip_helm | Skip installing Helm charts (for GitOps workflows) | `bool` | `false` | no |
419418

420419
## Outputs
@@ -556,7 +555,6 @@ MIT
556555
| <a name="input_cluster_region"></a> [cluster\_region](#input\_cluster\_region) | K8s cluster region | `string` | n/a | yes |
557556
| <a name="input_cluster_zone"></a> [cluster\_zone](#input\_cluster\_zone) | K8s cluster zone | `string` | `""` | no |
558557
| <a name="input_k8s_provider"></a> [k8s\_provider](#input\_k8s\_provider) | Kubernetes cloud provider (gke, eks, aks) | `string` | n/a | yes |
559-
| <a name="input_liqo_image_tag"></a> [liqo\_image\_tag](#input\_liqo\_image\_tag) | Liqo image version tag | `string` | `"v1.0.1-6"` | no |
560558
| <a name="input_organization_id"></a> [organization\_id](#input\_organization\_id) | CAST AI organization ID | `string` | n/a | yes |
561559
| <a name="input_pod_cidr"></a> [pod\_cidr](#input\_pod\_cidr) | Pod CIDR for network configuration | `string` | n/a | yes |
562560
| <a name="input_reserved_subnet_cidrs"></a> [reserved\_subnet\_cidrs](#input\_reserved\_subnet\_cidrs) | List of reserved subnet CIDR's (relevant for GKE) | `list(string)` | `[]` | no |

main.tf

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ module "liqo_helm_values_gke" {
1010
count = var.k8s_provider == "gke" ? 1 : 0
1111
source = "./modules/gke"
1212

13-
image_tag = var.liqo_image_tag
1413
cluster_name = var.cluster_name
1514
cluster_region = var.cluster_region
1615
cluster_zone = var.cluster_zone
@@ -25,7 +24,6 @@ module "liqo_helm_values_eks" {
2524
count = var.k8s_provider == "eks" ? 1 : 0
2625
source = "./modules/eks"
2726

28-
image_tag = var.liqo_image_tag
2927
cluster_name = var.cluster_name
3028
cluster_region = var.cluster_region
3129
api_server_address = var.api_server_address
@@ -38,7 +36,6 @@ module "liqo_helm_values_aks" {
3836
count = var.k8s_provider == "aks" ? 1 : 0
3937
source = "./modules/aks"
4038

41-
image_tag = var.liqo_image_tag
4239
cluster_name = var.cluster_name
4340
cluster_region = var.cluster_region
4441
cluster_zone = var.cluster_zone

modules/aks/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ locals {
55
liqo_yaml_values = {
66
liqo = {
77
enabled = true
8-
tag = var.image_tag
98
apiServer = {
109
address = var.api_server_address
1110
}

modules/aks/variables.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
variable "image_tag" {
2-
description = "Docker image tag"
3-
type = string
4-
}
5-
61
variable "cluster_name" {
72
description = "GKE cluster name"
83
type = string

modules/eks/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ locals {
55
liqo_yaml_values = {
66
liqo = {
77
enabled = true
8-
tag = var.image_tag
98
apiServer = {
109
address = var.api_server_address
1110
}

modules/eks/variables.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
variable "image_tag" {
2-
description = "Docker image tag"
3-
type = string
4-
}
5-
61
variable "cluster_name" {
72
description = "EKS cluster name"
83
type = string

modules/gke/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ locals {
55
liqo_yaml_values = {
66
liqo = {
77
enabled = true
8-
tag = var.image_tag
98
apiServer = {
109
address = var.api_server_address
1110
}

modules/gke/variables.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
variable "image_tag" {
2-
description = "Docker image tag"
3-
type = string
4-
}
5-
61
variable "cluster_name" {
72
description = "GKE cluster name"
83
type = string

variables.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,6 @@ variable "cluster_zone" {
4545
default = ""
4646
}
4747

48-
variable "liqo_image_tag" {
49-
description = "Liqo image version tag"
50-
type = string
51-
default = "v1.0.1-6"
52-
}
53-
5448
variable "api_server_address" {
5549
description = "K8s API server address"
5650
type = string

0 commit comments

Comments
 (0)