-
Notifications
You must be signed in to change notification settings - Fork 332
Fix helm doc #2001
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
Fix helm doc #2001
Changes from all commits
5d1edf0
2e47ef2
597f99e
0fc8452
6ec59bf
fed7b35
aaf852b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,18 +24,13 @@ | |
| # Function to display usage information | ||
| usage() { | ||
| echo "Usage: $0 [--eclipse-link-deps=<deps>] [-h|--help]" | ||
| echo " --eclipse-link-deps=<deps> EclipseLink dependencies to use, e.g." | ||
| echo " --eclipse-link-deps=com.h2database:h2:2.3.232" | ||
| echo " -h, --help Display this help message" | ||
| exit 1 | ||
| } | ||
|
|
||
| # Parse command-line arguments | ||
| while [[ "$#" -gt 0 ]]; do | ||
| case $1 in | ||
| --eclipse-link-deps=*) | ||
| ECLIPSE_LINK_DEPS="-PeclipseLinkDeps=${1#*=}" | ||
| ;; | ||
| -h|--help) | ||
| usage | ||
| ;; | ||
|
|
@@ -53,9 +48,11 @@ sh ./kind-registry.sh | |
| # Build and deploy the server image | ||
| echo "Building polaris image..." | ||
| ./gradlew \ | ||
| :polaris-server:build \ | ||
| :polaris-server:assemble \ | ||
| :polaris-server:quarkusAppPartsBuild --rerun \ | ||
| $ECLIPSE_LINK_DEPS \ | ||
| :polaris-admin:assemble \ | ||
| :polaris-admin:quarkusAppPartsBuild --rerun \ | ||
| -Dquarkus.container-image.tag=postgres-latest \ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we don't need the special tag anymore. The default image is built with the Postgres JDBC driver afaict.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Without |
||
| -Dquarkus.container-image.build=true \ | ||
| -Dquarkus.container-image.registry=localhost:5001 | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.