Skip to content

Commit 088da22

Browse files
Release 2.1.1 (#23)
* Mysql helm version upgrade * Pre-commit run * Versions Updated
1 parent b5a8711 commit 088da22

File tree

6 files changed

+358
-76
lines changed

6 files changed

+358
-76
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This module allows you to easily deploy a MySQL database on Kubernetes using Hel
1111

1212
| MysqlDB Helm Chart Version | K8s supported version (EKS, AKS & GKE) |
1313
| :-----: | :--- |
14-
| **9.2.0** | **1.23,1.24,1.25,1.26,1.27** |
14+
| **11.1.7** | **1.23,1.24,1.25,1.26,1.27,1.28,1.29** |
1515

1616

1717
## Usage Example
@@ -180,12 +180,12 @@ No modules.
180180

181181
| Name | Description | Type | Default | Required |
182182
|------|-------------|------|---------|:--------:|
183-
| <a name="input_app_version"></a> [app\_version](#input\_app\_version) | Version of the MySQL application that will be deployed. | `string` | `"8.0.29-debian-11-r9"` | no |
183+
| <a name="input_app_version"></a> [app\_version](#input\_app\_version) | Version of the MySQL application that will be deployed. | `string` | `"8.4.1-debian-12-r1"` | no |
184184
| <a name="input_azure_container_name"></a> [azure\_container\_name](#input\_azure\_container\_name) | Azure container name | `string` | `""` | no |
185185
| <a name="input_azure_storage_account_key"></a> [azure\_storage\_account\_key](#input\_azure\_storage\_account\_key) | Azure storage account key | `string` | `""` | no |
186186
| <a name="input_azure_storage_account_name"></a> [azure\_storage\_account\_name](#input\_azure\_storage\_account\_name) | Azure storage account name | `string` | `""` | no |
187187
| <a name="input_bucket_provider_type"></a> [bucket\_provider\_type](#input\_bucket\_provider\_type) | Choose what type of provider you want (s3, gcs) | `string` | `"gcs"` | no |
188-
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | Version of the Mysql chart that will be used to deploy MySQL application. | `string` | `"9.2.0"` | no |
188+
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | Version of the Mysql chart that will be used to deploy MySQL application. | `string` | `"11.1.7"` | no |
189189
| <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name) | Specifies the name of the EKS cluster to deploy the MySQL application on. | `string` | `""` | no |
190190
| <a name="input_create_namespace"></a> [create\_namespace](#input\_create\_namespace) | Specify whether or not to create the namespace if it does not already exist. Set it to true to create the namespace. | `string` | `true` | no |
191191
| <a name="input_custom_user_password"></a> [custom\_user\_password](#input\_custom\_user\_password) | custom user password for MongoDB | `string` | `""` | no |

examples/complete/aws/helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ restorejob:
100100
cpu: 100m
101101
limits:
102102
memory: 500Mi
103-
cpu: 200m
103+
cpu: 200m

examples/complete/aws/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ locals {
77
Expires = "Never"
88
Department = "Engineering"
99
}
10-
create_namespace = false
10+
create_namespace = true
1111
namespace = "mysql"
1212
store_password_to_secret_manager = false
1313
mysqldb_custom_credentials_enabled = true
@@ -43,7 +43,7 @@ module "mysql" {
4343
mysqldb_config = {
4444
name = local.name
4545
values_yaml = file("./helm/values.yaml")
46-
app_version = "8.0.29-debian-11-r9"
46+
app_version = "8.4.1-debian-12-r1"
4747
environment = local.environment
4848
architecture = "replication"
4949
custom_database = "test_db"

0 commit comments

Comments
 (0)