Skip to content

Commit

Permalink
Bump the version of fastapi app
Browse files Browse the repository at this point in the history
  • Loading branch information
gitkvark authored Dec 27, 2023
1 parent 95bea5f commit 3dfc5c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helm/fastapi-app/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion terraform/deployments/preprod/releases/fastapi_app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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")
]
Expand Down
2 changes: 1 addition & 1 deletion terraform/deployments/prod/releases/fastapi_app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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")
]
Expand Down

0 comments on commit 3dfc5c5

Please sign in to comment.