values.yaml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #Set this to containerd or crio if you want to collect CRI format logs
  2. containerRuntime: containerd
  3. Kubernetes: true
  4. operator:
  5. resources:
  6. limits:
  7. memory: 60Mi
  8. fluentbit:
  9. output:
  10. opensearch:
  11. enable: true
  12. host: 192.168.25.3
  13. port: 9200
  14. httpUser:
  15. valueFrom:
  16. secretKeyRef:
  17. name: opensearch-http-authentication
  18. key: username
  19. httpPassword:
  20. valueFrom:
  21. secretKeyRef:
  22. name: opensearch-http-authentication
  23. key: password
  24. tls:
  25. verify: false
  26. suppressTypeName: true
  27. logstashFormat: true
  28. affinity:
  29. nodeAffinity:
  30. requiredDuringSchedulingIgnoredDuringExecution:
  31. nodeSelectorTerms:
  32. - matchExpressions:
  33. - key: node-role.kubernetes.io/edge
  34. operator: DoesNotExist
  35. - key: fluentbit.cluster.local/schedulable
  36. operator: NotIn
  37. values:
  38. - "false"
  39. - key: kubernetes.io/os
  40. operator: NotIn
  41. values:
  42. - "windows"