You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
summary: Secure your Quarkus application endpoints by combining the built-in Quarkus Basic authentication with the Jakarta Persistence identity provider to enable role-based access control (RBAC).
summary: This reference guide explains how to enable AppCDS with Quarkus.
348
-
categories: "core, cloud"
348
+
categories: "cloud, core"
349
349
type: guide
350
350
url: /guides/appcds
351
351
- title: Application Data Caching
@@ -539,7 +539,7 @@ types:
539
539
- title: Dev Services for Databases
540
540
filename: databases-dev-services.adoc
541
541
summary: "When testing or running in dev mode Quarkus can provide you with a zero-config database out of the box, a feature we refer to as Dev Services."
542
-
categories: "tooling, data"
542
+
categories: "data, tooling"
543
543
type: guide
544
544
url: /guides/databases-dev-services
545
545
- title: Dev Services for Elasticsearch
@@ -1022,7 +1022,7 @@ types:
1022
1022
- title: Tips for writing native applications
1023
1023
filename: writing-native-applications-tips.adoc
1024
1024
summary: This guide is a collection of tips to help you solve the problems you encounter when compiling applications to native executable.
1025
-
categories: "writing-extensions, core, native"
1025
+
categories: "core, native, writing-extensions"
1026
1026
type: guide
1027
1027
url: /guides/writing-native-applications-tips
1028
1028
- title: Update projects to the latest version of Quarkus
@@ -1158,7 +1158,7 @@ types:
1158
1158
- title: Using SSL With Native Executables
1159
1159
filename: native-and-ssl.adoc
1160
1160
summary: "In this guide, we will discuss how you can get your native images to support SSL, as native images don't support it out of the box."
a| https://github.com/quarkusio/quarkus/blob/main/extensions/hibernate-orm/deployment/src/main/java/io/quarkus/hibernate/orm/deployment/JpaModelBuildItem.java[`io.quarkus.hibernate.orm.deployment.JpaModelBuildItem`, window="_blank"] :: +++Internal model to represent which objects are likely needing enhancement via HibernateEntityEnhancer.+++
Copy file name to clipboardExpand all lines: _versions/main/guides/deploying-to-openshift.adoc
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,14 +117,14 @@ So unless you've used the `quarkus.openshift.route.expose` config property to ex
117
117
----
118
118
oc expose svc/greeting <1>
119
119
oc get routes <2>
120
-
curl http://<route>/greeting <3>
120
+
curl http://<route>/hello <3>
121
121
----
122
122
<1> Expose the service.
123
123
<2> Get the list of exposed routes.
124
124
<3> Access your application.
125
125
126
126
[[control_application_config]]
127
-
=== Configure the OpenShift Application Manually
127
+
=== Configure the OpenShift Application Manually
128
128
129
129
If you need more control over the deployment configuration you can build the container image first and then configure the OpenShift application manually.
130
130
@@ -147,7 +147,7 @@ During the build you may find the `Caused by: javax.net.ssl.SSLHandshakeExceptio
147
147
quarkus.kubernetes-client.trust-certs=true
148
148
----
149
149
150
-
For more information, see link:https://quarkus.io/guides/deploying-to-kubernetes#client-connection-configuration[deploying to kubernetes].
150
+
For more information, see link:https://quarkus.io/guides/deploying-to-kubernetes#client-connection-configuration[deploying to Kubernetes].
151
151
====
152
152
153
153
Once the build is done we can create a new application from the relevant `ImageStream`.
When a non-s2i container image extension is used, an `ImageStream` is created that is pointing to an external `dockerImageRepository`. The image is built and pushed to the registry and the `ImageStream` populates the tags that are available in the `dockerImageRepository`.
180
+
When a non-s2i container image extension is used, an `ImageStream` is created that is pointing to an external `dockerImageRepository`. The image is built and pushed to the registry and the `ImageStream` populates the tags that are available in the `dockerImageRepository`.
181
181
182
182
To select which extension will be used for building the image:
0 commit comments