We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab66a2c commit 0817514Copy full SHA for 0817514
cloud/services/container/nodepools/reconcile.go
@@ -370,7 +370,7 @@ func (s *Service) checkDiffAndPrepareUpdateConfig(existingNodePool *containerpb.
370
}
371
372
// Kubernetes taints
373
- if !cmp.Equal(desiredNodePool.GetConfig().GetTaints(), existingNodePool.GetConfig().GetTaints()) {
+ if !cmp.Equal(desiredNodePool.GetConfig().GetTaints(), existingNodePool.GetConfig().GetTaints(), cmpopts.IgnoreUnexported(containerpb.NodeTaint{})) {
374
needUpdate = true
375
updateNodePoolRequest.Taints = &containerpb.NodeTaints{
376
Taints: desiredNodePool.GetConfig().GetTaints(),
0 commit comments