Replies: 1 comment 1 reply
-
@pepov opened up #1443 with a small fix to use the proper volume mount name for the buffer metrics sidecar. let me know what you think |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is your feature request related to a problem? Please describe.
When deploying the logging-operator in GCP using the GCP CSI driver, its possible to run into limitations due to the default name of the Fluentd buffer PVC.
Example error from the CSI driver:
Unfortunately, its not possible to override this name like:
This is because updating the
claimName
results in an error in the statefulset when thebuffer-metrics-sidecar
is enabled:I believe this is because that volumeMount name is hardcoded to the default of
fluentd-buffer
:logging-operator/pkg/resources/fluentd/statefulset.go
Lines 389 to 390 in e183d85
Describe the solution you'd like
When the
fluentd.bufferStorageVolume.pvc.source.claimName
name is set, the buffer metrics sidecar container should be updated to use the new volume mount name.Describe alternatives you've considered
N/A
Additional context
Somewhat related to #1327
Beta Was this translation helpful? Give feedback.
All reactions