From 8b81efabe6cb5d6bee019c51a24d8e17269915f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Mu=C3=B1oz=20Vera?= Date: Mon, 2 Dec 2024 10:30:18 +0100 Subject: [PATCH] chore: updating app version on main readme (#3) * chore: updating app version on main readme * chore: adding the main readme to the workflow that updates the version * chore: fix typo in version --- .../workflows/git-create-release-branch.yml | 2 +- openmetadata-aws/README.md | 20 +++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/git-create-release-branch.yml b/.github/workflows/git-create-release-branch.yml index 67cfb79..4af3474 100644 --- a/.github/workflows/git-create-release-branch.yml +++ b/.github/workflows/git-create-release-branch.yml @@ -23,7 +23,7 @@ jobs: fetch-depth: 0 - name: Update application versions run: | - sed -i "s/$(cat .version)/${{ inputs.release_branch_name}}/g" openmetadata-aws/openmetadata_dependencies.tf openmetadata-aws/README_terraform.md openmetadata-aws/openmetadata.tf openmetadata-aws/variables.tf examples/aws/complete/variables.tf .version + sed -i "s/$(cat .version)/${{ inputs.release_branch_name}}/g" openmetadata-aws/openmetadata_dependencies.tf openmetadata-aws/README_terraform.md openmetadata-aws/README.md openmetadata-aws/openmetadata.tf openmetadata-aws/variables.tf examples/aws/complete/variables.tf .version - name: Create Pull Request uses: peter-evans/create-pull-request@v7 with: diff --git a/openmetadata-aws/README.md b/openmetadata-aws/README.md index 72a6f09..3342848 100644 --- a/openmetadata-aws/README.md +++ b/openmetadata-aws/README.md @@ -10,13 +10,13 @@ Using `helm` as provisioner for all components: ```hcl module "omd" { - source = "github.com/open-metadata/openmetadata-terraform//openmetadata-aws?ref=[version]" + source = "github.com/open-metadata/openmetadata-terraform//openmetadata-aws?ref=1.5.12" # Namespace where OpenMetadata and dependencies will be deployed app_namespace = "example" # Version of OpenMetadata to deploy - app_version = "1.6" + app_version = "1.5.12" # ARN of the KMS key used to encrypt the EFS volumes kms_key_id = "arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012" @@ -70,13 +70,13 @@ Using `aws` as provisioner for all possible components: ```hcl module "omd" { - source = "github.com/open-metadata/openmetadata-terraform//openmetadata-aws?ref=[version]" + source = "github.com/open-metadata/openmetadata-terraform//openmetadata-aws?ref=1.5.12" # Namespace where OpenMetadata and dependencies will be deployed app_namespace = "example" # Version of OpenMetadata to deploy - app_version = "1.6" + app_version = "1.5.12" # Security group IDs assigned to the EKS nodes, the RDS instances, EFS volumes, and OpenSearch domain will allow inbound traffic from them eks_nodes_sg_ids = ["sg-1234abcd5678efgh", "sg-8765ijkl4321mnop"] @@ -118,13 +118,13 @@ Using `existing` as provisioner for all possible components: ```hcl module "omd" { - source = "github.com/open-metadata/openmetadata-terraform//openmetadata-aws?ref=[version]" + source = "github.com/open-metadata/openmetadata-terraform//openmetadata-aws?ref=1.5.12" # Namespace where OpenMetadata and dependencies will be deployed app_namespace = "example" # Version of OpenMetadata to deploy - app_version = "1.6" + app_version = "1.5.12" # ARN of the KMS key used to encrypt resources kms_key_id = "arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012" @@ -194,13 +194,13 @@ You can add extra environment variables to the OpenMetadata pod by using the par ```hcl module "omd" { - source = "github.com/open-metadata/openmetadata-terraform//openmetadata-aws?ref=[version]" + source = "github.com/open-metadata/openmetadata-terraform//openmetadata-aws?ref=1.5.12" # Namespace where OpenMetadata and dependencies will be deployed app_namespace = "example" # Version of OpenMetadata to deploy - app_version = "1.6" + app_version = "1.5.12" # Subnet IDs, used for the Airflow's EFS mount targets and EFS security group subnet_ids = ["subnet-1a2b3c4d", "subnet-5e6f7g8h", "subnet-9i0j1k2l"] @@ -220,13 +220,13 @@ You can also add extra environment variables from Kubernetes secrets by using th ```hcl module "omd" { - source = "github.com/open-metadata/openmetadata-terraform//openmetadata-aws?ref=[version]" + source = "github.com/open-metadata/openmetadata-terraform//openmetadata-aws?ref=1.5.12" # Namespace where OpenMetadata and dependencies will be deployed app_namespace = "example" # Version of OpenMetadata to deploy - app_version = "1.6" + app_version = "1.5.12" # Subnet IDs, used for the Airflow's EFS mount targets and EFS security group subnet_ids = ["subnet-1a2b3c4d", "subnet-5e6f7g8h", "subnet-9i0j1k2l"]