george-zubrienko commented on issue #1153:
URL: https://github.com/apache/polaris/issues/1153#issuecomment-2736566142
I'd add here that `admin-tool` images are also needed. Currently we have a
repo-based workflow that publishes images to our private CR:
```
- name: Build and Push Polaris
run: |
set -e
./gradlew clean :polaris-quarkus-server:assemble
-Dquarkus.container-image.build=true --no-build-cache -PeclipseLink=true
-PeclipseLinkDeps=org.postgresql:postgresql:42.7.4 \
&& docker tag apache/polaris:latest
xxxxx.dkr.ecr.xxxx.amazonaws.com/polaris:${{ github.event.inputs.tag }} \
&& docker push
497010676583.dkr.ecr.eu-central-1.amazonaws.com/polaris:${{
github.event.inputs.tag }}
- name: Build and Push Polaris Admin Tool
run: |
set -e
./gradlew clean :polaris-quarkus-admin:build
-Dquarkus.container-image.build=true --no-build-cache
-PeclipseLinkDeps=org.postgresql:postgresql:42.7.4 \
&& docker tag apache/polaris-admin-tool:latest
xxxx.dkr.ecr.xxxx.amazonaws.com/polaris-admin-tool:${{ github.event.inputs.tag
}} \
&& docker push
497010676583.dkr.ecr.eu-central-1.amazonaws.com/polaris-admin-tool:${{
github.event.inputs.tag }}
```
In addition, images are needed for different metastore backend types
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]