Skip to content

Commit

Permalink
Possible fix for leaderboard backend api not routed correctly
Browse files Browse the repository at this point in the history
Want to route api requests to base /api/... however this was not reflected in the deployment.yaml. This (hopefully) should fix it
  • Loading branch information
ThomBreugelmans authored Mar 25, 2024
1 parent 2a285ba commit c14dba5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/annugame/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: /
path: /api/
port: backend
initialDelaySeconds: 15
periodSeconds: 20
successThreshold: 1
timeoutSeconds: 5
readinessProbe:
httpGet:
path: /
path: /api/
port: backend
initialDelaySeconds: 15
periodSeconds: 20
Expand All @@ -82,4 +82,4 @@ spec:
memory: 150Mi
env:
- name: "BASE"
value: ""
value: "/api"

0 comments on commit c14dba5

Please sign in to comment.