Skip to content

Commit

Permalink
Merge branch 'master' into issue245
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-brown committed Oct 23, 2024
2 parents ab0b9d6 + 48a4ecb commit 9dc4643
Show file tree
Hide file tree
Showing 17 changed files with 130 additions and 115 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/commitChecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v1
with:
fetch-depth: 0

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/databaseMigrationChecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 0

- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/dockerRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v1
with:
fetch-depth: 0

# Zips the docker related components of the release to store them
- name: Tar Docker
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 0

- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v1
with:
fetch-depth: 0

# Downloads the pre-release release to copy the artifacts used for testing
- uses: robinraju/release-downloader@v1.10
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM registry.access.redhat.com/ubi8/ubi:8.10-1054
FROM registry.access.redhat.com/ubi8/ubi:8.10-1088

RUN dnf install -y \
java-17-openjdk-headless-1:17.0.12.0.7-2.el8.x86_64 \
java-17-openjdk-headless-1:17.0.13.0.11-3.el8.x86_64 \
unzip-6.0-46.el8 \
fontconfig-2.13.1-4.el8 \
dejavu-fonts-common-2.35-7.el8 \
Expand Down
174 changes: 87 additions & 87 deletions build.gradle

Large diffs are not rendered by default.

16 changes: 9 additions & 7 deletions compose-entry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ services:
nginx:
image: "${DOCKER_REGISTRY}/wres/nginx"
container_name: nginx_proxy
restart: always
volumes:
- ${NGINX_SERVER_CERT}:/etc/nginx/cert/wres_server_cert.pem
- ${NGINX_SERVER_KEY}:/etc/nginx/cert/wres_server_key.pem
Expand All @@ -30,6 +31,7 @@ services:
cadvisor:
image: gcr.io/cadvisor/cadvisor:latest
container_name: cadvisor
restart: always
ports:
- 8080:8080
volumes:
Expand All @@ -47,7 +49,7 @@ services:
networks:
wres_net:
persister:
image: "${DOCKER_REGISTRY}/wres/wres-redis:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-redis:20241018-74b8415"
restart: always
volumes:
# For the job data
Expand All @@ -64,7 +66,7 @@ services:
tasker:
ports:
- "443:8443"
image: "${DOCKER_REGISTRY}/wres/wres-tasker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-tasker:20241018-74b8415"
restart: always
depends_on:
broker:
Expand Down Expand Up @@ -100,7 +102,7 @@ services:
- "5671:5671"
- "15671:15671"
- "15691:15691"
image: "${DOCKER_REGISTRY}/wres/wres-broker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-broker:20241018-74b8415"
restart: always
volumes:
# For certificates and keys that correspond to them:
Expand Down Expand Up @@ -128,7 +130,7 @@ services:
healthcheck:
start_period: 5m
worker:
image: "${DOCKER_REGISTRY}/wres/wres-worker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-worker:20241018-74b8415"
restart: always
depends_on:
broker:
Expand Down Expand Up @@ -178,7 +180,7 @@ services:
- 5673
ports:
- 15673:15673
image: "${DOCKER_REGISTRY}/wres/wres-eventsbroker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-eventsbroker:20241018-74b8415"
restart: always
volumes:
# For heap-dump files
Expand All @@ -204,7 +206,7 @@ services:
depends_on:
eventsbroker:
condition: service_started
image: "${DOCKER_REGISTRY}/wres/wres-graphics:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-graphics:20241018-74b8415"
restart: always
volumes:
# To write graphics outputs
Expand All @@ -226,7 +228,7 @@ services:
depends_on:
eventsbroker:
condition: service_started
image: "${DOCKER_REGISTRY}/wres/wres-writing:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-writing:20241018-74b8415"
restart: always
volumes:
# To write numeric outputs
Expand Down
10 changes: 6 additions & 4 deletions compose-workers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ services:
nginx:
image: "${DOCKER_REGISTRY}/wres/nginx"
container_name: nginx_proxy
restart: always
volumes:
- ${NGINX_SERVER_CERT}:/etc/nginx/cert/wres_server_cert.pem
- ${NGINX_SERVER_KEY}:/etc/nginx/cert/wres_server_key.pem
Expand All @@ -30,6 +31,7 @@ services:
cadvisor:
image: gcr.io/cadvisor/cadvisor:latest
container_name: cadvisor
restart: always
ports:
- 8080:8080
volumes:
Expand All @@ -47,7 +49,7 @@ services:
networks:
wres_net:
worker:
image: "${DOCKER_REGISTRY}/wres/wres-worker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-worker:20241018-74b8415"
restart: always
depends_on:
eventsbroker:
Expand Down Expand Up @@ -95,7 +97,7 @@ services:
- 5673
ports:
- 15673:15673
image: "${DOCKER_REGISTRY}/wres/wres-eventsbroker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-eventsbroker:20241018-74b8415"
restart: always
volumes:
# For heap-dump files
Expand All @@ -121,7 +123,7 @@ services:
depends_on:
eventsbroker:
condition: service_started
image: "${DOCKER_REGISTRY}/wres/wres-graphics:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-graphics:20241018-74b8415"
restart: always
volumes:
# To write graphics outputs
Expand All @@ -143,7 +145,7 @@ services:
depends_on:
eventsbroker:
condition: service_started
image: "${DOCKER_REGISTRY}/wres/wres-writing:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-writing:20241018-74b8415"
restart: always
volumes:
# To write numeric outputs
Expand Down
2 changes: 1 addition & 1 deletion scripts/localWindowsDeployScripts/eventsbroker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN apk add tar && \
FROM registry.access.redhat.com/ubi8/ubi:8.8-1009

RUN dnf install -y \
java-17-openjdk-headless-1:17.0.12.0.7-2.el8.x86_64 \
java-17-openjdk-headless-1:17.0.13.0.11-3.el8.x86_64 \
procps-ng-3.3.15-14.el8 \
iproute-6.2.0-5.el8_9 \
libaio-0.3.112-1.el8 \
Expand Down
2 changes: 1 addition & 1 deletion scripts/localWindowsDeployScripts/tasker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM registry.access.redhat.com/ubi8/ubi:8.8-1009

RUN dnf install -y \
java-17-openjdk-headless-1:17.0.12.0.7-2.el8.x86_64 \
java-17-openjdk-headless-1:17.0.13.0.11-3.el8.x86_64 \
unzip-6.0-46.el8 \
procps-ng-3.3.15-14.el8 \
iproute-6.2.0-5.el8_9 \
Expand Down
2 changes: 1 addition & 1 deletion scripts/localWindowsDeployScripts/vis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM registry.access.redhat.com/ubi8/ubi:8.8-1009

RUN dnf install -y \
java-17-openjdk-headless-1:17.0.12.0.7-2.el8.x86_64 \
java-17-openjdk-headless-1:17.0.13.0.11-3.el8.x86_64 \
unzip-6.0-46.el8 \
fontconfig-2.13.1-4.el8 \
dejavu-fonts-common-2.35-7.el8 \
Expand Down
2 changes: 1 addition & 1 deletion scripts/localWindowsDeployScripts/wres/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM registry.access.redhat.com/ubi8/ubi:8.8-1009

RUN dnf install -y \
java-17-openjdk-headless-1:17.0.12.0.7-2.el8.x86_64 \
java-17-openjdk-headless-1:17.0.13.0.11-3.el8.x86_64 \
unzip-6.0-46.el8 \
fontconfig-2.13.1-4.el8 \
dejavu-fonts-common-2.35-7.el8 \
Expand Down
4 changes: 2 additions & 2 deletions wres-eventsbroker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ RUN apk --no-cache add tar && \
# Final image
#############

FROM registry.access.redhat.com/ubi8/ubi:8.10-1054
FROM registry.access.redhat.com/ubi8/ubi:8.10-1088

RUN dnf install -y \
java-17-openjdk-headless-1:17.0.12.0.7-2.el8.x86_64 \
java-17-openjdk-headless-1:17.0.13.0.11-3.el8.x86_64 \
procps-ng-3.3.15-14.el8 \
iproute-6.2.0-6.el8_10.x86_64 \
libaio-0.3.112-1.el8 \
Expand Down
4 changes: 2 additions & 2 deletions wres-tasker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM registry.access.redhat.com/ubi8/ubi:8.10-1054
FROM registry.access.redhat.com/ubi8/ubi:8.10-1088

RUN dnf install -y \
java-17-openjdk-headless-1:17.0.12.0.7-2.el8.x86_64 \
java-17-openjdk-headless-1:17.0.13.0.11-3.el8.x86_64 \
unzip-6.0-46.el8 \
procps-ng-3.3.15-14.el8 \
iproute-6.2.0-6.el8_10.x86_64 \
Expand Down
4 changes: 2 additions & 2 deletions wres-vis/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# From a base image, make updates
FROM registry.access.redhat.com/ubi8/ubi:8.10-1054
FROM registry.access.redhat.com/ubi8/ubi:8.10-1088

RUN dnf install -y \
java-17-openjdk-headless-1:17.0.12.0.7-2.el8.x86_64 \
java-17-openjdk-headless-1:17.0.13.0.11-3.el8.x86_64 \
unzip-6.0-46.el8 \
fontconfig-2.13.1-4.el8 \
dejavu-fonts-common-2.35-7.el8 \
Expand Down
4 changes: 2 additions & 2 deletions wres-writing/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# From a base image, make updates
FROM registry.access.redhat.com/ubi8/ubi:8.10-1054
FROM registry.access.redhat.com/ubi8/ubi:8.10-1088

RUN dnf install -y \
java-17-openjdk-headless-1:17.0.12.0.7-2.el8.x86_64 \
java-17-openjdk-headless-1:17.0.13.0.11-3.el8.x86_64 \
unzip-6.0-46.el8 \
fontconfig-2.13.1-4.el8 \
dejavu-fonts-common-2.35-7.el8 \
Expand Down

0 comments on commit 9dc4643

Please sign in to comment.