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
I'm deploying Fluentbit Helm chart in AKS. The DaemonSet uses hostpath which is not allowed in my k8s environment. I saw the fluent-operator chart addresses this issue with this flag to disableLogVolumes
Is this also possible without deploying fluent-operator, and where can it be specified in fluentbit helm chart?
How will it impact the deployment? Help is much appreciated
# The config volume is mounted by default, either to the existingConfigMap value, or the default of "fluent-bit.fullname"
volumeMounts:
- name: config
mountPath: /fluent-bit/etc/conf
daemonSetVolumes:
- name: varlog
hostPath:
path: /var/log
- name: varlibdockercontainers
hostPath:
path: /var/lib/docker/containers
- name: etcmachineid
hostPath:
path: /etc/machine-id
type: File
daemonSetVolumeMounts:
- name: varlog
mountPath: /var/log
- name: varlibdockercontainers
mountPath: /var/lib/docker/containers
readOnly: true
- name: etcmachineid
mountPath: /etc/machine-id
readOnly: true
```
The text was updated successfully, but these errors were encountered:
I'm deploying Fluentbit Helm chart in AKS. The DaemonSet uses hostpath which is not allowed in my k8s environment. I saw the fluent-operator chart addresses this issue with this flag to
disableLogVolumes
Is this also possible without deploying fluent-operator, and where can it be specified in fluentbit helm chart?
How will it impact the deployment? Help is much appreciated
The text was updated successfully, but these errors were encountered: