Skip to content
Snippets Groups Projects
Commit a5e86fd4 authored by Malte Finsterwalder's avatar Malte Finsterwalder
Browse files

Merge branch 'main' into production

parents f9848e27 180801cc
No related branches found
No related tags found
No related merge requests found
...@@ -210,6 +210,10 @@ apps: ...@@ -210,6 +210,10 @@ apps:
api_version: v1 api_version: v1
project_id: holi-shared project_id: holi-shared
service_account_file: ${FCM_KEYFILE} service_account_file: ${FCM_KEYFILE}
fcm_options:
notification:
title: 'holi Chat'
body: 'You have a new message or invitation'
# #
# # This is the maximum number of connections to GCM servers at any one time # # This is the maximum number of connections to GCM servers at any one time
# # the default is 20. # # the default is 20.
......
...@@ -139,6 +139,7 @@ resource "google_cloud_run_service" "chat_server" { ...@@ -139,6 +139,7 @@ resource "google_cloud_run_service" "chat_server" {
# possible values: all-traffic/private-ranges-only(default) https://cloud.google.com/sdk/gcloud/reference/run/services/update#--vpc-egress # possible values: all-traffic/private-ranges-only(default) https://cloud.google.com/sdk/gcloud/reference/run/services/update#--vpc-egress
# this needs to be set to all-traffic in order to route a cloud run url correctly, since it does resolve to a non-private ip address. # this needs to be set to all-traffic in order to route a cloud run url correctly, since it does resolve to a non-private ip address.
"run.googleapis.com/vpc-access-egress" = "all-traffic" "run.googleapis.com/vpc-access-egress" = "all-traffic"
"run.googleapis.com/startup-cpu-boost" = "true"
} }
# labels set on the revision level # labels set on the revision level
labels = { labels = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment