Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions README.md

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still README is not properly updated, versions should be updated.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed, Please Validate.

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This module allows you to easily deploy a MySQL database on Kubernetes using Hel

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


## Usage Example
Expand Down Expand Up @@ -180,12 +180,12 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <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 |
| <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 |
| <a name="input_azure_container_name"></a> [azure\_container\_name](#input\_azure\_container\_name) | Azure container name | `string` | `""` | no |
| <a name="input_azure_storage_account_key"></a> [azure\_storage\_account\_key](#input\_azure\_storage\_account\_key) | Azure storage account key | `string` | `""` | no |
| <a name="input_azure_storage_account_name"></a> [azure\_storage\_account\_name](#input\_azure\_storage\_account\_name) | Azure storage account name | `string` | `""` | no |
| <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 |
| <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 |
| <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 |
| <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 |
| <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 |
| <a name="input_custom_user_password"></a> [custom\_user\_password](#input\_custom\_user\_password) | custom user password for MongoDB | `string` | `""` | no |
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/aws/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ restorejob:
cpu: 100m
limits:
memory: 500Mi
cpu: 200m
cpu: 200m
4 changes: 2 additions & 2 deletions examples/complete/aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ locals {
Expires = "Never"
Department = "Engineering"
}
create_namespace = false
create_namespace = true
namespace = "mysql"
store_password_to_secret_manager = false
mysqldb_custom_credentials_enabled = true
Expand Down Expand Up @@ -43,7 +43,7 @@ module "mysql" {
mysqldb_config = {
name = local.name
values_yaml = file("./helm/values.yaml")
app_version = "8.0.29-debian-11-r9"
app_version = "8.4.1-debian-12-r1"
environment = local.environment
architecture = "replication"
custom_database = "test_db"
Expand Down
Loading