-
Notifications
You must be signed in to change notification settings - Fork 8
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
GKE Core platform updates and enhancements #82
base: main
Are you sure you want to change the base?
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.
Thanks for this PR. A few questions about variables.
node_config { | ||
machine_type = "e2-standard-4" | ||
machine_type = var.cluster_system_node_pool_machine_type | ||
service_account = google_service_account.cluster.email |
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 it possible to have a variable here and use google_service_account.cluster.email
is the user didn't specify anything? This will be useful for the federated learning use case
node_config { | ||
machine_type = "e2-standard-4" | ||
machine_type = var.cluster_system_node_pool_machine_type |
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.
Just checking: we're reusing the same variable as we're using in the system
node pool below.
location = var.cluster_region | ||
name = local.cluster_name | ||
project = var.cluster_project_id | ||
node_config { |
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 it possible to add variables to specify custom labels and taints for this node pool? This will be useful for the federated learning use case.
"resource-type" : "system" | ||
} | ||
machine_type = var.cluster_system_node_pool_machine_type | ||
service_account = google_service_account.cluster.email |
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 it possible to have a variable here and use google_service_account.cluster.email
is the user didn't specify anything? This will be useful for the federated learning use case
"https://www.googleapis.com/auth/cloud-platform" | ||
] | ||
|
||
# Blocks |
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.
Can we add blocks and vars to configure labels and taints? These are going to be useful for the federated learning use case. Thanks
No description provided.