-
Notifications
You must be signed in to change notification settings - Fork 456
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
features domain broken on Tenant helm chart #1354
Comments
Feel free to send a fix @Rid |
@Rid This issue is due to the way URLs are parsed by golang. Since there is no slash after the scheme in your example domains (there is actually no scheme), they are parsed in the following way "scheme:opaque[?query][#fragment]" resulting in empty domains (see https://pkg.go.dev/net/url#URL). A workaround is to add a scheme to your domains, while a permanent fix is analyzed e.g.
Please let me know your thoughts. |
PR #1378 created for this issue. The workaround will need to be removed once it is implemented and you uptake the change. |
Fixes #1378 |
Expected Behavior
MINIO_DOMAIN to be set correctly
Current Behavior
Steps to Reproduce (for bugs)
Context
@dvaldivia I'm using the latest helm version with
However the statefulset has:
The statefulset pods fail with:
Regression
Yes
Your Environment
Latest helm operator & tenant charts
Fix: #1378
The text was updated successfully, but these errors were encountered: