Skip to content

Commit

Permalink
fix(Glitchtip): avoid http 502 from ingress (#400)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophenne authored and kosmoz committed Nov 3, 2023
1 parent ea6a343 commit 7f89328
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ data class GlitchtipSpec(
mapOf("memory" to Quantity("700", "Mi"))
),
@field:Pattern(SEMVER)
val version: String = "3.3.1",
val version: String = "3.4.0",
@field:Nullable
override val database: PostgresDatabaseSpec = PostgresDatabaseSpec()
) : HasDatabaseSpec<PostgresDatabaseSpec>
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ class GlitchtipIngress(configService: ConfigService) : DependentIngress<Glitchti
labels(primary.resourceLabels)
annotations(
getDefaultAnnotations(primary, context) +
("nginx.ingress.kubernetes.io/proxy-body-size" to "256m")
mapOf(
"nginx.ingress.kubernetes.io/proxy-body-size" to "256m",
"nginx.ingress.kubernetes.io/proxy-next-upstream-tries" to "10"
)
)
}
spec {
Expand Down

0 comments on commit 7f89328

Please sign in to comment.