oci-kubernetes-monitoring
oci-kubernetes-monitoring copied to clipboard
Cannot deploy logan on a node pool with taints
I have some nodepool with taints on them. To deploy pods on them, I must add torations to pod manifest (through deployment or daemonset, etc). But with current template file in helm chart, there is no way to do that. Currently toleration config (in file charts/logan/templates/fluentd-daemonset.yaml) was fixed as:
tolerations:
- key: node-role.kubernetes.io/master
effect: NoSchedule
- key: node-role.kubernetes.io/control-plane
effect: NoSchedule
Pls support custom toleration. Thanks.