You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When deploying this helm chart into a downstream cluster consisting of 3 Control-Plane(CP) nodes and 5 worker nodes, it doesn't deploy anything to the CP nodes. Upon investigation it was found that the CP nodes have two taints for their roles: Control-Plane and etcd. When the helm chart was updated to include the missing toleration, the deployment went out successfully and the CP nodes were seen.
Can the config be updated to also include tolerations for etcd by default?
Currently in the neuvector helm chart configuration, it has two tolerations set at:
https://github.com/neuvector/neuvector-helm/blob/master/charts/core/values.yaml#L298-L302
master and Control-Plane
When deploying this helm chart into a downstream cluster consisting of 3 Control-Plane(CP) nodes and 5 worker nodes, it doesn't deploy anything to the CP nodes. Upon investigation it was found that the CP nodes have two taints for their roles: Control-Plane and etcd. When the helm chart was updated to include the missing toleration, the deployment went out successfully and the CP nodes were seen.
Can the config be updated to also include tolerations for etcd by default?
tolerations:
- effect: NoSchedule
key: node-role.kubernetes.io/master
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
The text was updated successfully, but these errors were encountered: