This message was deleted.
# google-cloud
s
This message was deleted.
i
autopilot quirks I've run into so far off the top of my head: workload identity config is automatic nodeConfig is ignored by GCP you instead do something like follows to set a non-default service account:
Copy code
clusterAutoscaling: {
                autoProvisioningDefaults: {
                    serviceAccount: myServiceAccount.email,
                },
            },
note that if you get a google API error saying
googleapi: Error 400: Overriding Autopilot autoscaling settings is not allowed.
you may need to delete and recreate your cluster (this was my experience)