always pull images for finance app [ci skip]
This commit is contained in:
parent
3047ff1d9b
commit
87f1b1ed7b
1 changed files with 9 additions and 6 deletions
|
|
@ -99,8 +99,9 @@ resource "kubernetes_deployment" "finance_app" {
|
||||||
}
|
}
|
||||||
spec {
|
spec {
|
||||||
container {
|
container {
|
||||||
image = "viktorbarzin/finance-app:latest"
|
image = "viktorbarzin/finance-app:latest"
|
||||||
name = "finance-app"
|
name = "finance-app"
|
||||||
|
image_pull_policy = "Always"
|
||||||
|
|
||||||
env {
|
env {
|
||||||
name = "DB_CONNECTION_STRING"
|
name = "DB_CONNECTION_STRING"
|
||||||
|
|
@ -215,8 +216,9 @@ resource "kubernetes_deployment" "finance_app_backend_webhook_handler" {
|
||||||
}
|
}
|
||||||
spec {
|
spec {
|
||||||
container {
|
container {
|
||||||
image = "viktorbarzin/finance-app-backend-webhook-handler:latest"
|
image = "viktorbarzin/finance-app-backend-webhook-handler:latest"
|
||||||
name = "finance-app-backend-webhook-handler"
|
name = "finance-app-backend-webhook-handler"
|
||||||
|
image_pull_policy = "Always"
|
||||||
env {
|
env {
|
||||||
name = "GRAPHQL_ENDPOINT"
|
name = "GRAPHQL_ENDPOINT"
|
||||||
value = var.prod_graphql_endpoint
|
value = var.prod_graphql_endpoint
|
||||||
|
|
@ -257,8 +259,9 @@ resource "kubernetes_deployment" "finance_app_frontend" {
|
||||||
}
|
}
|
||||||
spec {
|
spec {
|
||||||
container {
|
container {
|
||||||
image = "viktorbarzin/finance-app-frontend:latest"
|
image = "viktorbarzin/finance-app-frontend:latest"
|
||||||
name = "finance-app-frontend"
|
name = "finance-app-frontend"
|
||||||
|
image_pull_policy = "Always"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue