Skip to content
This repository has been archived by the owner on Jan 27, 2024. It is now read-only.

feat(api): configure to automatic deployment #70

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions api.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ locals {
api = {
image_tags = {
database_layer = "0.3.74"
server = "0.60.0"
server = "staging"
api_db_migration = "0.8.0"
}
}
Expand All @@ -22,7 +22,7 @@ module "api" {

namespace = kubernetes_namespace.api_namespace.metadata.0.name
image_tag = local.api.image_tags.server
image_pull_policy = "IfNotPresent"
image_pull_policy = "Always"
node_pool = module.cluster.node_pools.non-preemptible

environment = "staging"
Expand Down