-
Notifications
You must be signed in to change notification settings - Fork 4
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
feat(blobvault): Make blobvault pvc storage optional if s3 bucket is used #148
feat(blobvault): Make blobvault pvc storage optional if s3 bucket is used #148
Conversation
1481e54
to
1014dad
Compare
39d44ba
to
3dcf452
Compare
c02af57
to
218370a
Compare
c0eac4b
to
38ac4f3
Compare
38ac4f3
to
6532e37
Compare
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.
Not nit-picking in this review, but I see that we need to improve resource naming a little bit (more simple/accurate names will make it easier when developing)
charts/studio/templates/configmap-studio-backend-nginx-sidecar.yaml
Outdated
Show resolved
Hide resolved
Co-authored-by: Jesper Svendsen <[email protected]>
b47fd1b
to
f837af6
Compare
Leaved only configmap
This 0.60.0 fixes the issue with Ingress objects not being cleaned up. To upgrade to 0.60.0 and above, you need to manually delete the Ingress object before upgrading: ```bash kubectl delete ingress -l app.kubernetes.io/managed-by=Helm --namespace studio kubectl delete ingress blobvault --namespace studio ```
9460e2a
to
0855e27
Compare
@jesper7 PTAL again :-) In ☝️ commits I
|
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.
Nice work on refactoring the ConfigMaps!
Only some very minor comments
Co-authored-by: Jesper Svendsen <[email protected]>
Breaking Change
This 0.60.0 fixes the issue with Ingress objects not being cleaned up.
To upgrade to 0.60.0 and above, you need to manually delete the Ingress object before upgrading:
Purpose of the PR
This PR configures the
blobvault
service, which runs on the same node as the worker if there is no S3 bucket configured.Also, it replaces
nginx
chart dependency for hosting Studio under the custombasePath
. The nginx is deployed as a sidecar.Closes #145
Tasks