Skip to content

Commit

Permalink
chore: updating app version on main readme (#3)
Browse files Browse the repository at this point in the history
* chore: updating app version on main readme

* chore: adding the main readme to the workflow that updates the version

* chore: fix typo in version
  • Loading branch information
pellejador authored Dec 2, 2024
1 parent 593c332 commit 8b81efa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/git-create-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
20 changes: 10 additions & 10 deletions openmetadata-aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"]
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"]
Expand All @@ -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"]
Expand Down

0 comments on commit 8b81efa

Please sign in to comment.