Skip to content

Commit ed91d94

Browse files
authored
Merge pull request #40 from open-metadata/release/1.8.9
chore(release): Prepare 1.8.9 release
2 parents dd4d0ef + f067ea2 commit ed91d94

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.8
1+
1.8.9

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Using `helm` as provisioner for all components:
1111
```hcl
1212
module "omd" {
1313
source = "open-metadata/openmetadata/aws"
14-
version = "1.8.8"
14+
version = "1.8.9"
1515
1616
# Namespace where OpenMetadata and dependencies will be deployed
1717
app_namespace = "example"
@@ -69,7 +69,7 @@ Using `aws` as provisioner for all possible components:
6969
```hcl
7070
module "omd" {
7171
source = "open-metadata/openmetadata/aws"
72-
version = "1.8.8"
72+
version = "1.8.9"
7373
7474
# Namespace where OpenMetadata and dependencies will be deployed
7575
app_namespace = "example"
@@ -115,7 +115,7 @@ Using `existing` as provisioner for all possible components:
115115
```hcl
116116
module "omd" {
117117
source = "open-metadata/openmetadata/aws"
118-
version = "1.8.8"
118+
version = "1.8.9"
119119
120120
# Namespace where OpenMetadata and dependencies will be deployed
121121
app_namespace = "example"
@@ -187,7 +187,7 @@ You can add extra environment variables by using the parameter `extra_envs`:
187187
```hcl
188188
module "omd" {
189189
source = "open-metadata/openmetadata/aws"
190-
version = "1.8.8"
190+
version = "1.8.9"
191191
192192
# Namespace where OpenMetadata and dependencies will be deployed
193193
app_namespace = "example"
@@ -214,7 +214,7 @@ You can also add extra environment variables from Kubernetes secrets by using th
214214
```hcl
215215
module "omd" {
216216
source = "open-metadata/openmetadata/aws"
217-
version = "1.8.8"
217+
version = "1.8.9"
218218
219219
# Namespace where OpenMetadata and dependencies will be deployed
220220
app_namespace = "example"

README_terraform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
| <a name="input_airflow"></a> [airflow](#input\_airflow) | Airflow configuration. | <pre>object({<br/> credentials = optional(object({ # Airflow credentials<br/> password = optional(object({ # Password secret<br/> secret_key = optional(string) # Secret key for the Airflow password<br/> secret_ref = optional(string) # Secret reference for the Airflow password<br/> }))<br/> username = optional(string) # Username for Airflow<br/> }))<br/> db = optional(object({ # Airflow's database configuration<br/> aws = optional(object({ # AWS specific configuration for the Airflow database<br/> backup_retention_period = optional(number) # Number of days to retain database backups<br/> backup_window = optional(string) # Preferred backup window for RDS<br/> deletion_protection = optional(bool) # The database can't be deleted when this value is set to true<br/> identifier = optional(string) # Unique identifier for the AWS RDS instance<br/> instance_class = optional(string) # Instance class of the AWS RDS instance<br/> maintenance_window = optional(string) # Preferred maintenance window for RDS<br/> multi_az = optional(bool) # Whether to enable multi-AZ deployment<br/> skip_final_snapshot = optional(bool) # If true, no DBSnapshot is created when the database is deleted<br/> }))<br/> credentials = optional(object({ # Airflow database credentials<br/> password = optional(object({ # Password secret<br/> secret_key = optional(string) # Secret key for the Airflow database password<br/> secret_ref = optional(string) # Secret reference for the Airflow database password<br/> }))<br/> username = optional(string) # Username for the Airflow database<br/> }))<br/> db_name = optional(string) # Name of the Airflow database<br/> engine = optional(object({ # Airflow database engine configuration<br/> name = optional(string) # One of 'postgres' or 'mysql'<br/> version = optional(string) # Version of the database engine<br/> }))<br/> host = optional(string) # Database host address for Airflow<br/> port = optional(number) # Port on which the Airflow database is accessible<br/> provisioner = string # One of 'helm', 'aws', or 'existing'<br/> storage_size = optional(number) # Size of the Airflow database storage in GB<br/> }))<br/> endpoint = optional(string) # Endpoint URL for the Airflow instance<br/> provisioner = optional(string) # One of 'helm' or 'existing'<br/> logs_cleanup = optional(object({ # Airflow logs cleanup configuration<br/> enabled = optional(bool) # Whether to enable log cleanup<br/> schedule = optional(string) # Schedule for log cleanup<br/> retain_days = optional(number) # Number of days to retain logs<br/> }))<br/> storage = optional(object({ # Airflow storage configuration<br/> dags = optional(number) # Size of storage allocated for DAGs (in GB)<br/> logs = optional(number) # Size of storage allocated for logs (in GB)<br/> }))<br/> })</pre> | <pre>{<br/> "db": {<br/> "provisioner": "helm"<br/> },<br/> "provisioner": "helm"<br/>}</pre> | no |
4040
| <a name="input_app_helm_chart_version"></a> [app\_helm\_chart\_version](#input\_app\_helm\_chart\_version) | Version of the OpenMetadata Helm chart to deploy. If not specified, the variable `app_version` will be used. | `string` | `null` | no |
4141
| <a name="input_app_namespace"></a> [app\_namespace](#input\_app\_namespace) | Namespace in which to deploy the OpenMetadata application. | `string` | `"openmetadata"` | no |
42-
| <a name="input_app_version"></a> [app\_version](#input\_app\_version) | OpenMetadata version to deploy. | `string` | `"1.8.8"` | no |
42+
| <a name="input_app_version"></a> [app\_version](#input\_app\_version) | OpenMetadata version to deploy. | `string` | `"1.8.9"` | no |
4343
| <a name="input_db"></a> [db](#input\_db) | OpenMetadata's database configuration. | <pre>object({<br/> aws = optional(object({ # AWS specific configuration for the database<br/> backup_retention_period = optional(number) # Number of days to retain database backups<br/> backup_window = optional(string) # Preferred backup window for RDS<br/> deletion_protection = optional(bool) # The database can't be deleted when this value is set to true<br/> identifier = optional(string) # Unique identifier for the AWS RDS instance<br/> instance_class = optional(string) # Instance class of the AWS RDS instance<br/> maintenance_window = optional(string) # Preferred maintenance window for RDS<br/> multi_az = optional(bool) # Whether to enable multi-AZ deployment<br/> skip_final_snapshot = optional(bool) # If true, no DBSnapshot is created when the database is deleted<br/> }))<br/> credentials = optional(object({ # Database credentials<br/> password = optional(object({ # Password secret<br/> secret_key = optional(string) # Secret key for the database password<br/> secret_ref = optional(string) # Secret reference for the database password<br/> }))<br/> username = optional(string) # Username for the database<br/> }))<br/> db_name = optional(string) # Name of the database<br/> engine = optional(object({ # Database engine configuration<br/> name = optional(string) # One of 'postgres' or 'mysql'<br/> version = optional(string) # Version of the database engine<br/> }))<br/> host = optional(string) # Database host address<br/> port = optional(number) # Port on which the database is accessible<br/> provisioner = string # One of 'helm', 'aws', or 'existing'<br/> storage_size = optional(number) # Size of the database storage in GB<br/> })</pre> | <pre>{<br/> "provisioner": "helm"<br/>}</pre> | no |
4444
| <a name="input_docker_image_name"></a> [docker\_image\_name](#input\_docker\_image\_name) | Full path of the server Docker image name, excluding the tag. | `string` | `"docker.getcollate.io/openmetadata/server"` | no |
4545
| <a name="input_docker_image_tag"></a> [docker\_image\_tag](#input\_docker\_image\_tag) | Docker image tag for the server. If not specified, the variable `app_version` will be used. | `string` | `null` | no |

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module "app" {
44
source = "open-metadata/openmetadata/aws"
5-
version = "1.8.8"
5+
version = "1.8.9"
66

77
airflow = var.airflow
88
env_from = local.env_from

examples/complete/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ variable "app_extra_envs" {
6666
variable "app_version" {
6767
type = string
6868
description = "OpenMetadata version to deploy"
69-
default = "1.8.8"
69+
default = "1.8.9"
7070
}
7171

7272
variable "azs_to_use" {

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ variable "app_namespace" {
1313
variable "app_version" {
1414
type = string
1515
description = "OpenMetadata version to deploy."
16-
default = "1.8.8"
16+
default = "1.8.9"
1717
}
1818

1919
variable "docker_image_name" {

0 commit comments

Comments
 (0)