-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feat:add support for provisioning windows node pools #1402
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:add support for provisioning windows node pools #1402
Conversation
@bharathkkb - PTAL? |
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 like this approach much better! Thanks for driving this and testing! Mostly minor nits.
ip_range_pods = var.ip_range_pods | ||
ip_range_services = var.ip_range_services | ||
create_service_account = var.compute_engine_service_account == "create" | ||
service_account = var.compute_engine_service_account | ||
istio = var.istio | ||
cloudrun = var.cloudrun | ||
dns_cache = var.dns_cache | ||
gce_pd_csi_driver = var.gce_pd_csi_driver | ||
sandbox_enabled = var.sandbox_enabled | ||
database_encryption = var.database_encryption | ||
enable_binary_authorization = var.enable_binary_authorization | ||
enable_pod_security_policy = var.enable_pod_security_policy | ||
enable_identity_service = true | ||
release_channel = "REGULAR" | ||
logging_enabled_components = ["SYSTEM_COMPONENTS"] |
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.
Let's hardcode most of these. Ideally only project ID is needed as input which we will pass in via fixture.
upper = false | ||
} | ||
|
||
resource "google_compute_network" "main" { |
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.
We can move this to examples with fixtures being a thin wrapper around examples.
@g-awmalik |
@bharathkkb - can you take one more look? I want to release this soon. Thanks! |
Addresses #1383
Tested with
windows_node_pools
to an existing clusternode_pools
and 1windows_node_pools
windows_node_pools
to an existing cluster with 2node_pools
(one windows based and one linux based)Additionally, it doesn't cause breaking changes to existing plans.