oracle-quickstart / oci-kubernetes-monitoring

Kubernetes Monitoring with OCI Observability & Management Platform
https://www.oracle.com/manageability/logging-analytics/
Universal Permissive License v1.0
42 stars 32 forks source link

Cannot deploy logan on a node pool with taints #77

Open quyenlc opened 2 months ago

quyenlc commented 2 months ago

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.