-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: Migrate Infra from Pagoda to Sig Network #918
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm except a couple comments
@@ -11,7 +11,7 @@ resource "google_cloud_run_v2_service" "leader" { | |||
|
|||
vpc_access { | |||
connector = var.connector_id | |||
egress = "PRIVATE_RANGES_ONLY" | |||
egress = "ALL_TRAFFIC" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we still want this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, since we want all traffic to leave our VPC.
@@ -13,7 +13,7 @@ resource "google_cloud_run_v2_service" "signer" { | |||
for_each = var.connector_id == null ? [] : [1] | |||
content { | |||
connector = var.connector_id == null ? null : var.connector_id | |||
egress = "PRIVATE_RANGES_ONLY" | |||
egress = "ALL_TRAFFIC" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also yes since technically signers are available publicly for our leader node.
scopes = ["cloud-platform"] | ||
} | ||
name_prefix = "multichain-${count.index}" | ||
source_image_family = "cos-113-lts" | ||
source_image_project = "cos-cloud" | ||
machine_type = "n2-standard-2" | ||
machine_type = "e2-medium" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this cheaper now compared with n2-standard-2?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Considerably yes, we could probably do even cheaper.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not think this is the reason, but our dev network is slower now. Let's keep the hardware in mind.
No description provided.