Skip to content

Commit c368700

Browse files
committed
Bumped KIND and Istio versions
1 parent a3e6a11 commit c368700

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

modules/istio-mesh/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ No modules.
4343
| Name | Description | Type | Default | Required |
4444
|------|-------------|------|---------|:--------:|
4545
| <a name="input_helm_repository"></a> [helm\_repository](#input\_helm\_repository) | Helm Chart Repository URL | `string` | `"https://istio-release.storage.googleapis.com/charts"` | no |
46-
| <a name="input_helm_version"></a> [helm\_version](#input\_helm\_version) | The version of the Istio Helm Chart to be installed | `string` | `"1.28.2"` | no |
46+
| <a name="input_helm_version"></a> [helm\_version](#input\_helm\_version) | The version of the Istio Helm Chart to be installed | `string` | `"1.28.3"` | no |
4747
| <a name="input_namespace"></a> [namespace](#input\_namespace) | Namespace where to install the services | `string` | `"istio-system"` | no |
4848
| <a name="input_port_configuration"></a> [port\_configuration](#input\_port\_configuration) | Defines the configuration of the ports to be used by the Istio Ingress Gateway | <pre>map(object({<br/> app_protocol = string<br/> node_port = number<br/> host_port = number<br/> target_port = number<br/> protocol = string<br/> }))</pre> | <pre>{<br/> "http": {<br/> "app_protocol": "http",<br/> "host_port": 80,<br/> "node_port": 30000,<br/> "protocol": "TCP",<br/> "target_port": 80<br/> },<br/> "https": {<br/> "app_protocol": "https",<br/> "host_port": 443,<br/> "node_port": 30001,<br/> "protocol": "TCP",<br/> "target_port": 443<br/> },<br/> "status-port": {<br/> "app_protocol": "http",<br/> "host_port": 15021,<br/> "node_port": 30002,<br/> "protocol": "TCP",<br/> "target_port": 15021<br/> }<br/>}</pre> | no |
4949
| <a name="input_replica_count"></a> [replica\_count](#input\_replica\_count) | The number of replicas that have to be configured for the services | `number` | `3` | no |

modules/istio-mesh/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ variable "namespace" {
1111
variable "helm_version" {
1212
description = "The version of the Istio Helm Chart to be installed"
1313
type = string
14-
default = "1.28.2"
14+
default = "1.28.3"
1515
validation {
1616
condition = can(regex("^[0-9]+.[0-9]+.[0-9]+$", var.helm_version))
1717
error_message = "The Helm version must be in the format x.y.z"

modules/kind-cluster/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ No modules.
4242
| <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name) | Defines the name of the cluster | `string` | `"local-cluster"` | no |
4343
| <a name="input_disable_default_cni"></a> [disable\_default\_cni](#input\_disable\_default\_cni) | If true, disables the default CNI (Container Network Interface) plugin in the kind cluster | `bool` | `false` | no |
4444
| <a name="input_kubeconfig_save_path"></a> [kubeconfig\_save\_path](#input\_kubeconfig\_save\_path) | Defines the path to save the kubeconfig file | `string` | `"kubeconfig"` | no |
45-
| <a name="input_kubernetes_version"></a> [kubernetes\_version](#input\_kubernetes\_version) | Defines the kubernetes version to be used | `string` | `"v1.35.0"` | no |
45+
| <a name="input_kubernetes_version"></a> [kubernetes\_version](#input\_kubernetes\_version) | Defines the kubernetes version to be used | `string` | `"v1.35.1"` | no |
4646
| <a name="input_port_configuration"></a> [port\_configuration](#input\_port\_configuration) | Defines the port mappings for the cluster nodes | <pre>map(object({<br/> app_protocol = string<br/> node_port = number<br/> host_port = number<br/> target_port = number<br/> protocol = string<br/> }))</pre> | <pre>{<br/> "http": {<br/> "app_protocol": "http",<br/> "host_port": 80,<br/> "node_port": 30000,<br/> "protocol": "TCP",<br/> "target_port": 80<br/> },<br/> "https": {<br/> "app_protocol": "https",<br/> "host_port": 443,<br/> "node_port": 30001,<br/> "protocol": "TCP",<br/> "target_port": 443<br/> }<br/>}</pre> | no |
4747
| <a name="input_worker_nodes"></a> [worker\_nodes](#input\_worker\_nodes) | Defines the number of worker nodes to be created | `number` | `1` | no |
4848

modules/kind-cluster/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
variable "kubernetes_version" {
22
type = string
3-
default = "v1.35.0"
3+
default = "v1.35.1"
44
description = "Defines the kubernetes version to be used"
55
validation {
66
condition = can(regex("v[0-9]+.[0-9]+.[0-9]+", var.kubernetes_version))

0 commit comments

Comments
 (0)