Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ provider "castai" {
| service_cidr | Service CIDR for network configuration | `string` | - | yes |
| reserved_subnet_cidrs | List of reserved subnet CIDRs | `list(string)` | `[]` | no |
| api_url | CAST AI API URL | `string` | `"https://api.cast.ai"` | no |
| liqo_image_tag | Liqo image version tag | `string` | `"v1.0.1-5"` | no |
| liqo_image_tag | Liqo image version tag | `string` | `"v1.0.1-6"` | no |
| skip_helm | Skip installing Helm charts (for GitOps workflows) | `bool` | `false` | no |

## Outputs
Expand Down Expand Up @@ -522,9 +522,9 @@ MIT

| Name | Version |
|------|---------|
| <a name="provider_castai"></a> [castai](#provider\_castai) | 8.4.0 |
| <a name="provider_castai"></a> [castai](#provider\_castai) | 8.6.0 |
| <a name="provider_helm"></a> [helm](#provider\_helm) | 3.1.1 |
| <a name="provider_kubernetes"></a> [kubernetes](#provider\_kubernetes) | 3.0.0 |
| <a name="provider_kubernetes"></a> [kubernetes](#provider\_kubernetes) | 3.0.1 |

## Modules

Expand Down Expand Up @@ -556,7 +556,7 @@ MIT
| <a name="input_cluster_region"></a> [cluster\_region](#input\_cluster\_region) | K8s cluster region | `string` | n/a | yes |
| <a name="input_cluster_zone"></a> [cluster\_zone](#input\_cluster\_zone) | K8s cluster zone | `string` | `""` | no |
| <a name="input_k8s_provider"></a> [k8s\_provider](#input\_k8s\_provider) | Kubernetes cloud provider (gke, eks, aks) | `string` | n/a | yes |
| <a name="input_liqo_image_tag"></a> [liqo\_image\_tag](#input\_liqo\_image\_tag) | Liqo image version tag | `string` | `"v1.0.1-5"` | no |
| <a name="input_liqo_image_tag"></a> [liqo\_image\_tag](#input\_liqo\_image\_tag) | Liqo image version tag | `string` | `"v1.0.1-6"` | no |
| <a name="input_organization_id"></a> [organization\_id](#input\_organization\_id) | CAST AI organization ID | `string` | n/a | yes |
| <a name="input_pod_cidr"></a> [pod\_cidr](#input\_pod\_cidr) | Pod CIDR for network configuration | `string` | n/a | yes |
| <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 |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ variable "cluster_zone" {
variable "liqo_image_tag" {
description = "Liqo image version tag"
type = string
default = "v1.0.1-5"
default = "v1.0.1-6"
}

variable "api_server_address" {
Expand Down
Loading