Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): Prepare 1.6.1 release #10

Merged
merged 1 commit into from
Dec 11, 2024
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
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.0
1.6.1
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Using `helm` as provisioner for all components:
```hcl
module "omd" {
source = "open-metadata/openmetadata/aws"
version = "1.6.0"
version = "1.6.1"

# Namespace where OpenMetadata and dependencies will be deployed
app_namespace = "example"
Expand Down Expand Up @@ -66,7 +66,7 @@ Using `aws` as provisioner for all possible components:
```hcl
module "omd" {
source = "open-metadata/openmetadata/aws"
version = "1.6.0"
version = "1.6.1"

# Namespace where OpenMetadata and dependencies will be deployed
app_namespace = "example"
Expand Down Expand Up @@ -112,7 +112,7 @@ Using `existing` as provisioner for all possible components:
```hcl
module "omd" {
source = "open-metadata/openmetadata/aws"
version = "1.6.0"
version = "1.6.1"

# Namespace where OpenMetadata and dependencies will be deployed
app_namespace = "example"
Expand Down Expand Up @@ -183,7 +183,7 @@ eter `extra_envs`:
```hcl
module "omd" {
source = "open-metadata/openmetadata/aws"
version = "1.6.0"
version = "1.6.1"

# Namespace where OpenMetadata and dependencies will be deployed
app_namespace = "example"
Expand All @@ -207,7 +207,7 @@ You can also add extra environment variables from Kubernetes secrets by using th
```hcl
module "omd" {
source = "open-metadata/openmetadata/aws"
version = "1.6.0"
version = "1.6.1"

# Namespace where OpenMetadata and dependencies will be deployed
app_namespace = "example"
Expand Down
2 changes: 1 addition & 1 deletion README_terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
| <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/> 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 |
| <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 |
| <a name="input_app_namespace"></a> [app\_namespace](#input\_app\_namespace) | Namespace in which to deploy the OpenMetadata application. | `string` | `"openmetadata"` | no |
| <a name="input_app_version"></a> [app\_version](#input\_app\_version) | OpenMetadata version to deploy. | `string` | `"1.6.0"` | no |
| <a name="input_app_version"></a> [app\_version](#input\_app\_version) | OpenMetadata version to deploy. | `string` | `"1.6.1"` | no |
| <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 |
| <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 |
| <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 |
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module "app" {
source = "open-metadata/openmetadata/aws"
version = "1.6.0"
version = "1.6.1"

airflow = var.airflow
env_from = local.env_from
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ variable "app_extra_envs" {
variable "app_version" {
type = string
description = "OpenMetadata version to deploy"
default = "1.6.0"
default = "1.6.1"
}

variable "azs_to_use" {
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variable "app_namespace" {
variable "app_version" {
type = string
description = "OpenMetadata version to deploy."
default = "1.6.0"
default = "1.6.1"
}

variable "docker_image_name" {
Expand Down
Loading