From 3dfc5c5b6aa5d4c71dd566090ff8efe0bee7dbb9 Mon Sep 17 00:00:00 2001 From: gitkvark <146422227+gitkvark@users.noreply.github.com> Date: Wed, 27 Dec 2023 14:56:12 +0100 Subject: [PATCH] Bump the version of fastapi app --- helm/fastapi-app/Chart.yaml | 2 +- terraform/deployments/preprod/releases/fastapi_app.tf | 2 +- terraform/deployments/prod/releases/fastapi_app.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helm/fastapi-app/Chart.yaml b/helm/fastapi-app/Chart.yaml index c3061be..2b3878b 100644 --- a/helm/fastapi-app/Chart.yaml +++ b/helm/fastapi-app/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.7 +version: 0.1.8 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/terraform/deployments/preprod/releases/fastapi_app.tf b/terraform/deployments/preprod/releases/fastapi_app.tf index a54ae67..02c8bf3 100644 --- a/terraform/deployments/preprod/releases/fastapi_app.tf +++ b/terraform/deployments/preprod/releases/fastapi_app.tf @@ -2,7 +2,7 @@ resource "helm_release" "fastapi_app" { name = "fastapi-app" chart = "${path.module}/../../../../helm/fastapi-app" create_namespace = true - version = "0.1.7" + version = "0.1.8" values = [ file("${path.module}/../../../../helm/fastapi-app/values-preprod.yaml") ] diff --git a/terraform/deployments/prod/releases/fastapi_app.tf b/terraform/deployments/prod/releases/fastapi_app.tf index 5b7dc95..41988c8 100644 --- a/terraform/deployments/prod/releases/fastapi_app.tf +++ b/terraform/deployments/prod/releases/fastapi_app.tf @@ -2,7 +2,7 @@ resource "helm_release" "fastapi_app" { name = "fastapi-app" chart = "${path.module}/../../../../helm/fastapi-app" create_namespace = true - version = "0.1.7" + version = "0.1.8" values = [ file("${path.module}/../../../../helm/fastapi-app/values-prod.yaml") ]