Skip to content

Commit

Permalink
πŸ› Use UTK Hyku build
Browse files Browse the repository at this point in the history
The primary change in Docker is moving from JDK 11 to 17 and improving
the FITs xml config.

```
❯ git slog e9200061..f71b284f --no-merges
* e1c0510 β€” update fits xml Kirk Wang, (2022-12-01)
* 78eea74 β€” update jdk from 11 to 17 Kirk Wang, (2022-11-30)
* a404d11 β€” make cluster name a variable Rob Kaufman, (2022-11-19)
* d5745de β€” fix loki deploy Rob Kaufman, (2022-11-15)
```

Related to:

- #690

<details>
<summary>Commits since the reference point I'm bringing over from UTK</summary>

```
❯ git slog f71b284f.. --no-merges
* 99e6df9 β€” remove mimir, fix postgres Rob Kaufman, (2023-07-20) (origin/mimir_begon)
* 7e3d1c2 β€” add signoz to stack Rob Kaufman, (2023-06-21) (origin/signoz)
* abb6747 β€” build a new version of the LB with opentracing installed Rob Kaufman, (2023-06-21) (origin/loadbalancer_tracing)
* f91dddd β€” Update label_maker.rb to do description Rob Kaufman, (2023-06-22)
* 607051a β€” Update labels in label_maker.rb Crystal Richardson, (2023-06-22)
* e152146 β€” rotate mimir password Rob Kaufman, (2023-06-07)
* 5899db9 β€” try the zalando postgres opperator Rob Kaufman, (2023-06-07)
* d53fa35 β€” k8s notes. need to encrypt secrets to commit rest Rob Kaufman, (2023-05-18) (origin/smorgasbord_of_changes)
* 6a4d0e2 β€” aws loadbalancer, static ip support, nginx updates, mirmir, database backups and monitoring update. yes these should have been seperate Rob Kaufman, (2023-05-18)
| * e14543c β€” update syntax for deployment April Rieger, (2023-06-07)
| * 6fdca19 β€” Add issue template: dockerize application Diem ("Yeem") Tran, (2023-06-07)
| * fdd7967 β€” Add issue template: restore tests Diem ("Yeem") Tran, (2023-06-07)
| * 6596297 β€” Add issue template: project setup Diem ("Yeem") Tran, (2023-06-07)
| * b3fe36f β€” Updates to personnel from Sherwin April Rieger, (2022-12-17) (origin/glass-canvas-personnel-updates)
| * 66200ab β€” remove templates from legacy workflow Diem Tran, (2023-06-07)
| * e033ec4 β€” remove default issue template and add dev ops templates Diem Tran, (2023-06-02)
| * f58b80c β€” remove gitlab templates and add github templates Diem Tran, (2023-03-17)
| * bd50b88 β€” Updates the resource allocation based on the ticket April Rieger, (2023-06-05) (origin/695-update-resource-allocations)
|/
* b914ee8 β€” install ruby Rob Kaufman, (2023-04-21)
* c97f874 β€” install ruby Rob Kaufman, (2023-04-21)
* 23112df β€” working on workflows Rob Kaufman, (2023-04-21)
* 42d50a6 β€” working on label maker action Rob Kaufman, (2023-04-21)
* c806d99 β€” fix action Rob Kaufman, (2023-04-21)
* bcfc3c1 β€” label maker initial commit Rob Kaufman, (2023-04-21)
* f231359 β€” jemaloc base until hyrax gets it Rob Kaufman, (2023-03-24)
* 9c759e5 β€” deployment needs for r2-friends, move runners Rob Kaufman, (2022-11-28)
```

</details>
  • Loading branch information
jeremyf committed Aug 15, 2023
1 parent b97fe06 commit 07071fa
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 11 deletions.
18 changes: 15 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
FROM ghcr.io/scientist-softserv/dev-ops/samvera:e9200061 as hyku-base
ARG RUBY_VERSION=2.7.6
FROM ruby:$RUBY_VERSION-alpine3.15 as builder

RUN apk add build-base
RUN wget -O - https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2 | tar -xj && \
cd jemalloc-5.2.1 && \
./configure && \
make && \
make install

FROM ghcr.io/scientist-softserv/dev-ops/samvera:f71b284f as hyku-base

COPY --chown=1001:101 $APP_PATH/Gemfile* /app/samvera/hyrax-webapp/
RUN sh -l -c " \
Expand All @@ -18,6 +28,8 @@ RUN ln -sf /app/samvera/branding /app/samvera/hyrax-webapp/public/branding

CMD ./bin/web

COPY --from=builder /usr/local/lib/libjemalloc.so.2 /usr/local/lib/
ENV LD_PRELOAD=/usr/local/lib/libjemalloc.so.2

FROM hyku-base as hyku-worker
ENV MALLOC_ARENA_MAX=2
CMD ./bin/worker
CMD ./bin/worker
16 changes: 8 additions & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ x-app: &app
target: hyku-base
args:
- EXTRA_APK_PACKAGES=less vim bash openjdk11-jre ffmpeg rsync exiftool
- HYKU_BULKRAX_ENABLED=true
image: ghcr.io/scientist-softserv/palni-palci:${TAG:-latest}
env_file:
- .env
Expand Down Expand Up @@ -41,7 +42,6 @@ services:
- 2181:2181
- 7001:7000
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
- ZOO_MY_ID=1
- ZOO_SERVERS=server.1=zoo:2888:3888;2181
- ZOO_4LW_COMMANDS_WHITELIST=mntr,srvr,ruok,conf
Expand Down Expand Up @@ -83,11 +83,11 @@ services:
networks:
internal:
healthcheck:
test: curl -sf http://$$SOLR_ADMIN_USER:$$SOLR_ADMIN_PASSWORD@solr:8983/solr/admin/cores?action=STATUS || exit 1
start_period: 3s
interval: 5s
test: curl -sf http://$$SOLR_ADMIN_USER:$$SOLR_ADMIN_PASSWORD@localhost:8983/solr/admin/cores?action=STATUS || exit 1
start_period: 30s
interval: 20s
timeout: 5s
retries: 6
retries: 3
depends_on:
zoo:
condition: service_healthy
Expand Down Expand Up @@ -124,8 +124,7 @@ services:

web:
<<: *app
# Uncomment command to access container with out starting Rails. Useful for debugging
# command: sleep infinity
# command: sh -l -c "bundle && bundle exec puma -v -b tcp://0.0.0.0:3000"
environment:
- VIRTUAL_PORT=3000
- VIRTUAL_HOST=.hyku.test
Expand Down Expand Up @@ -160,6 +159,7 @@ services:
target: hyku-worker
args:
- EXTRA_APK_PACKAGES=less vim bash openjdk11-jre ffmpeg rsync exiftool
- HYKU_BULKRAX_ENABLED=true
cache_from:
- ghcr.io/scientist-softserv/palni-palci:${TAG:-latest}
- ghcr.io/scientist-softserv/palni-palci/worker:${TAG:-latest}
Expand Down Expand Up @@ -246,4 +246,4 @@ services:
- "4443:4443"
- "4444:4444"
networks:
internal:
internal:

0 comments on commit 07071fa

Please sign in to comment.