Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-geo-api
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-geo-api
Commits
cd947208
Commit
cd947208
authored
1 month ago
by
Christof Bauer
Browse files
Options
Downloads
Plain Diff
Merge branch 'main' into production
parents
27bcd946
06f9abbe
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
app/server.ts
+12
-1
12 additions, 1 deletion
app/server.ts
terraform/environments/deployment.tf
+19
-1
19 additions, 1 deletion
terraform/environments/deployment.tf
with
33 additions
and
4 deletions
.gitlab-ci.yml
+
1
−
1
View file @
cd947208
...
...
@@ -49,7 +49,7 @@ variables:
## common steps
cache_lint_test
:
image
:
'
europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/denoland/deno:2.1.
9
'
image
:
'
europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/denoland/deno:2.1.
10
'
stage
:
'
test'
script
:
-
deno cache --allow-import --lock=deno.lock app/deps.ts app/dev_deps.ts
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
1
−
1
View file @
cd947208
FROM
europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/denoland/deno:2.1.
9
FROM
europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/denoland/deno:2.1.
10
# The port that your application listens to.
EXPOSE
8003
...
...
This diff is collapsed.
Click to expand it.
app/server.ts
+
12
−
1
View file @
cd947208
...
...
@@ -141,7 +141,18 @@ export type GraphQLServer = any
export
const
startServer
=
(
config
:
ServerConfig
):
Promise
<
void
>
=>
{
const
graphQLServer
:
GraphQLServer
=
createGraphQLServer
(
config
)
return
serve
(
graphQLServer
.
handleRequest
,
{
const
handler
=
(
request
:
Request
):
Response
=>
{
const
url
=
new
URL
(
request
.
url
)
if
(
url
.
pathname
===
'
/health
'
)
{
return
new
Response
(
'
OK
'
,
{
status
:
200
})
}
return
graphQLServer
.
handleRequest
(
request
)
}
return
serve
(
handler
,
{
port
:
config
.
port
,
onListen
({
port
,
hostname
})
{
logger
.
info
(
...
...
This diff is collapsed.
Click to expand it.
terraform/environments/deployment.tf
+
19
−
1
View file @
cd947208
...
...
@@ -70,6 +70,24 @@ resource "google_cloud_run_service" "geo_api" {
memory
=
local
.
environment
==
"production"
?
"512Mi"
:
"256Mi"
}
}
startup_probe
{
http_get
{
path
=
"/health"
}
initial_delay_seconds
=
5
failure_threshold
=
3
period_seconds
=
5
timeout_seconds
=
2
}
liveness_probe
{
http_get
{
path
=
"/health"
}
initial_delay_seconds
=
10
period_seconds
=
30
timeout_seconds
=
2
failure_threshold
=
3
}
}
container_concurrency
=
0
# 0 means thread safe, no restriction on max concurrency
}
...
...
@@ -82,7 +100,7 @@ resource "google_cloud_run_service" "geo_api" {
"run.googleapis.com/vpc-access-connector"
=
data
.
terraform_remote_state
.
holi_infra_state
.
outputs
.
vpc_access_connector_name
# possible values: all-traffic/private-ranges-only(default) https://cloud.google.com/sdk/gcloud/reference/run/services/update#--vpc-egress
"run.googleapis.com/vpc-access-egress"
=
"private-ranges-only"
"run.googleapis.com/startup-cpu-boost"
=
"true"
"run.googleapis.com/startup-cpu-boost"
=
"true"
}
# labels set on the revision level
labels
=
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment