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

[WFLY-19999][WFLY-20000] Kubernetes Ci fixes #983

Merged
merged 2 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@ export image="${root_image_name}:latest"
docker tag ${qs_dir} ${image}
docker push ${image}

echo "Creating docker file locally and pushing to registry at localhost:5000"
docker build -t "${image}" target

################################################################################################
# Helm install, waiting for the pods to come up
helm_set_arguments=" --set ${helm_set_arg_prefix}build.enabled=false --set ${helm_set_arg_prefix}deploy.route.enabled=false --set ${helm_set_arg_prefix}image.name=${root_image_name}"
Expand Down
2 changes: 1 addition & 1 deletion logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<version>9</version>
<relativePath/>
</parent>
<artifactId>jboss-logging</artifactId>
<artifactId>logging</artifactId>
<version>35.0.0.Beta1-SNAPSHOT</version>
<packaging>war</packaging>
<name>Quickstart: logging</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private static void doLog(final String level) {

private static UriBuilder resolveBaseUrl() {
final String baseUrl = resolveServerHost();
return UriBuilder.fromUri(baseUrl).path("/jboss-logging/api/logs");
return UriBuilder.fromUri(baseUrl).path("/logging/api/logs");
}

private static String resolveServerHost() {
Expand Down