Hi, I want to create a GKE-Cluster without workloa...
# google-cloud
s
Hi, I want to create a GKE-Cluster without workload logging and monitoring by google. In google console there is the option 'Cloud Operations for GKE' -> 'System logging and monitoring (beta)' which may do what I want but I cannot find it in pulumis gcp.container.Cluster typescript class. Has anyone seen this option in pulumi?
c
What version of gke are you running since according to this cloud monitoring and logging are enabled by default?
s
I know 'Cloud Operations for GKE' is enabled by default but I don't want the default value. I want 'System logging and monitoring (beta)' which is not default whe creating a new cluster from within pulumi.
c
Hi @steep-angle-29984, You’ve got to add
clustertelemetry
as per gcp https://github.com/tusharshahrs/pulumi-homelab/blob/master/kubernetes_examples/gke-hello-world/index.ts#L14 Here is the property Here is a screenshot of my gke cluster with it
s
🙏 thank you