From 12ebcbe99aad75adf8b6a6d968b3d14f05fe6816 Mon Sep 17 00:00:00 2001 From: gitkvark Date: Wed, 27 Dec 2023 15:09:30 +0100 Subject: [PATCH] Adding recreate app --- helm/fastapi-app/Chart.yaml | 2 +- terraform/deployments/preprod/releases/fastapi_app.tf | 3 ++- terraform/deployments/prod/releases/fastapi_app.tf | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/helm/fastapi-app/Chart.yaml b/helm/fastapi-app/Chart.yaml index 2b3878b..89646f3 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.8 +version: 0.1.9 # 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 02c8bf3..0f6a0d2 100644 --- a/terraform/deployments/preprod/releases/fastapi_app.tf +++ b/terraform/deployments/preprod/releases/fastapi_app.tf @@ -2,7 +2,8 @@ resource "helm_release" "fastapi_app" { name = "fastapi-app" chart = "${path.module}/../../../../helm/fastapi-app" create_namespace = true - version = "0.1.8" + version = "0.1.9" + recreate_pods = true 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 41988c8..a392792 100644 --- a/terraform/deployments/prod/releases/fastapi_app.tf +++ b/terraform/deployments/prod/releases/fastapi_app.tf @@ -2,7 +2,8 @@ resource "helm_release" "fastapi_app" { name = "fastapi-app" chart = "${path.module}/../../../../helm/fastapi-app" create_namespace = true - version = "0.1.8" + version = "0.1.9" + recreate_pods = true values = [ file("${path.module}/../../../../helm/fastapi-app/values-prod.yaml") ]