Skip to content
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

Mapr deprecation #441

Merged
merged 14 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ansible/group_vars/omero-hosts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,15 +240,15 @@ omero_web_config_set:
# Plugins and additional web configuration

omero_web_apps_packages:
- omero-mapr==0.5.2
- omero-iviewer==0.14.0
- idr-gallery==3.11.0
- omero-mapr==0.5.3
- omero-iviewer==0.15.0
- idr-gallery==3.12.1
- omero-figure==6.2.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Figure is not used but some libraries bumped happened since and it could potential lead to some dependencies issues down the line

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can see one of three options:

  • do nothing and capture as an issue
  • bump OMERO.figure - if so to which version?
  • remove OMERO.figure
    Which one would you recommend?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm happy to bump OMERO.figure to latest 7.1.0...

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sbesson Could you re-run the deployment just to check that Figure bump doesn't cause any unexpected issues, thx

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployed on test125

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jburel as discussed at the weekly IDR meeting, leaving you to have a final look at the changes pushed by @will-moore . Once approved, I'll work on updating prod125

omero_web_apps_names:
- omero_mapr
- omero_iviewer
- idr_gallery
- omero_figure
- omero_mapr

omero_web_apps_top_links:
- label: Studies
Expand Down
10 changes: 3 additions & 7 deletions ansible/group_vars/proxy-hosts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ nginx_proxy_cache_match_uri:
- '"~web(client|gateway)/get_thumbnail*"'
- '"~(webclient/)?api/*"'
- '"~static/*"'
- '"~mapr/*"'
# - '"~mapr/*"'
- '"~gallery-api/*"'
- '"~webclient/img_detail/*"'
- '"~iviewer/*"'
Expand Down Expand Up @@ -192,12 +192,6 @@ nginx_proxy_caches:
inactive: 180d
match:
- '"~(webclient/)?api/*"'
- name: omeromapr
maxsize: 5g
keysize: 100m
inactive: 180d
match:
- '"~mapr/*"'
- name: omeroviewers # Metadata for viewers and related UI
maxsize: 1g
keysize: 1m
Expand Down Expand Up @@ -277,6 +271,8 @@ nginx_proxy_direct_locations:
alias: /srv/www/letsencrypt/challenge
- location: "= /submitter-survey"
redirect302: https://forms.gle/beR4vqLrgLgRzgSX9
- location: "~ ^/mapr/api/(?!config).*($|/)"
redirect302: /searchengine/apidocs/


# CORS: basically allow any cross-site since this is public read-only
Expand Down
Loading