https://pulumi.com logo
Title
s

steep-angle-29984

01/08/2021, 11:23 AM
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

cool-fireman-90027

01/08/2021, 1:06 PM
What version of gke are you running since according to this cloud monitoring and logging are enabled by default?
s

steep-angle-29984

01/08/2021, 1:12 PM
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

cool-fireman-90027

01/08/2021, 3:55 PM
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

steep-angle-29984

01/08/2021, 3:58 PM
🙏 thank you