-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🐛 Helm chart: Allow writing logs to S3 easily #8577
Conversation
thanks for the contribution @vnourdin, @davinchia will take a look soon :) |
## @param logs.s3.bucket Bucket name where logs should be stored | ||
## @param logs.s3.bucketRegion Region of the bucket (must be empty if using minio) | ||
s3: | ||
enabled: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added this value to be consistent with other logs destinations, bur it is not used yet.
Maybe we should remove it and tell in the doc that it's the "fallback" if no minio nor externalMinio is enabled ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's fine!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution. We are going to revamp this soon.
One question to make sure I understand.
Curious, did you test this locally for S3?
Yes I have tested, and it is in use on our production instance using S3 ! |
@vnourdin looks good! can you resolve the conflicts so I can merge this in? Thanks again! |
ℹ️ I have been forced to delete then recreate my fork and even if my branch is still named the same, GitHub cannot reconnect this PR to it 😞 I opened a new PR which is up-to-date with master: #8736 |
all good! |
What
The current helm chart is aimed to be used with Minio (chart or external) but not for S3 location.
How
logs
sectionAlso
🚨 User Impact 🚨
People switching from the old chart to this version must adapt their values, especially
minio.*
andexternalMinio.*
that moved tologs.minio.*
andlogs.externalMinio.*