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

Enhance MS Azure content doc portal search results #32183

Merged
merged 1 commit into from
Mar 29, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/azure-functions-http.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ https://github.com/quarkusio/quarkus/tree/main/docs/src/main/asciidoc
:extension-status: preview
include::_attributes.adoc[]
:categories: cloud
:summary: This guide explains how you can deploy Vert.x Web, Servlet, or RESTEasy microservices as an Azure Function.
:summary: Deploy Vert.x Web, Servlet, or RESTEasy microservices as a Microsoft Azure Function.

The `quarkus-azure-functions-http` extension allows you to write microservices with RESTEasy Reactive (our Jakarta REST implementation),
Undertow (servlet), Reactive Routes, or xref:funqy-http.adoc[Funqy HTTP] and make these microservices deployable to the Azure Functions runtime.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/azure-functions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ https://github.com/quarkusio/quarkus/tree/main/docs/src/main/asciidoc
:extension-status: preview
include::_attributes.adoc[]
:categories: cloud
:summary: This guide explains how you can integrate Quarkus with any Azure Functions you write.
:summary: Integrate Quarkus with the Microsoft Azure functions that you have written.

The `quarkus-azure-functions` extension is a simple integration point between Azure Functions
and Quarkus. It interacts with Azure Functions runtime to bootstrap quarkus and turns any
Expand Down
6 changes: 3 additions & 3 deletions docs/src/main/asciidoc/deploying-to-azure-cloud.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ https://github.com/quarkusio/quarkus/tree/main/docs/src/main/asciidoc
= Deploying to Microsoft Azure Cloud
include::_attributes.adoc[]
:categories: cloud
:summary: This guide explains how to deploy a Quarkus application to Microsoft Azure Cloud.
:summary: Deploy a Quarkus application to the Microsoft Azure cloud platform.

This guide covers:

Expand All @@ -30,7 +30,7 @@ Make sure you have the getting-started application at hand, or clone the Git rep

== Change Quarkus HTTP Port

If you correctly followed the xref:building-native-image.adoc[building native image guide], you should have a local container image named `quarkus-quickstart/getting-started`.
If you correctly followed the xref:building-native-image.adoc[building native image guide], you should have a local container image named `quarkus-quickstart/getting-started`.

While Quarkus by default runs on port 8080, most Azure services expect web applications to be running on port 80. Before we continue, go back to your quickstart code and open the file `src/main/docker/Dockerfile.native`.

Expand Down Expand Up @@ -124,7 +124,7 @@ $ az acr repository list -n <registry-name>

== Deploy to Azure Container Instances

The simplest way to start this container in the cloud is with the Azure Container Instances service. It simply creates a container on Azure infrastructure.
The simplest way to start this container in the cloud is with the Azure Container Instances service. It simply creates a container on Azure infrastructure.

There are different approaches for using ACI. Check the documentation for details. The quickest way to get a container up and running goes as it follows.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/funqy-azure-functions-http.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ https://github.com/quarkusio/quarkus/tree/main/docs/src/main/asciidoc
:extension-status: preview
include::_attributes.adoc[]
:categories: cloud
:summary: This guide explains Funqy's Azure Functions HTTP binding.
:summary: Use Funqy HTTP binding with Microsoft Azure Functions to deploy your serverless Quarkus applications.

You can use xref:funqy-http.adoc[Funqy HTTP] on Azure Functions. This allows you to invoke on multiple Funqy functions
using HTTP deployed as one Azure Function.
Expand Down