Skip to content

Commit db3abdd

Browse files
committed
put tabs back, other
1 parent a0e7f89 commit db3abdd

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

articles/service-fabric/service-fabric-quickstart-java-reliable-services.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Azure Service Fabric is a distributed systems platform for deploying and managin
2525

2626
In a command window, run the following command to clone the sample app repository to your local machine.
2727

28-
```git
28+
```bash
2929
git clone https://github.com/Azure-Samples/service-fabric-java-quickstart.git
3030
```
3131

@@ -57,6 +57,8 @@ git clone https://github.com/Azure-Samples/service-fabric-java-quickstart.git
5757

5858
You can now add a set of voting options, and start taking votes. The application runs and stores all data in your Service Fabric cluster, without the need for a separate database.
5959

60+
![Azure Service Fabric voting sample](./media/service-fabric-quickstart-java/service-fabric-voting-sample.png)
61+
6062
## Scale applications and services in a cluster
6163

6264
Services can be scaled across a cluster to accommodate for a change in the load on the services. You scale a service by changing the number of instances running in the cluster. There are many ways of scaling your services. For example, you can use scripts or commands from Service Fabric CLI (`sfctl`). The following steps use Service Fabric Explorer.

articles/service-fabric/service-fabric-quickstart-java-spring-boot.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,23 @@ In this quickstart, you deploy a Java Spring Boot application to Azure Service F
1414

1515
## Prerequisites
1616

17-
**Linux:**
17+
#### [Linux](#tab/linux)
18+
1819
- [Java environment](https://docs.microsoft.com/azure/service-fabric/service-fabric-get-started-linux#set-up-java-development) and [Yeoman](https://docs.microsoft.com/azure/service-fabric/service-fabric-get-started-linux#set-up-yeoman-generators-for-containers-and-guest-executables)
1920
- [Service Fabric SDK & Service Fabric Command Line Interface (CLI)](https://docs.microsoft.com/azure/service-fabric/service-fabric-get-started-linux#installation-methods)
2021
- [Git](https://git-scm.com/downloads)
2122

22-
**Mac:**
23+
#### [Mac](#tab/mac)
24+
2325
- [Java environment and Yeoman](https://docs.microsoft.com/azure/service-fabric/service-fabric-get-started-mac#create-your-application-on-your-mac-by-using-yeoman)
2426
- [Service Fabric SDK & Service Fabric Command Line Interface (CLI)](https://docs.microsoft.com/azure/service-fabric/service-fabric-cli#cli-mac)
2527
- [Git](https://git-scm.com/downloads)
2628

29+
---
30+
2731
## Download the sample
2832

29-
This quickstart uses the Spring Boot [Getting Started](https://spring.io/guides/gs/spring-boot/) sample from the Spring website. In a terminal window, run the following command to clone the sample app to your local machine.
33+
In a terminal window, run the following command to clone the Spring Boot [Getting Started](https://github.com/spring-guides/gs-spring-boot) sample app to your local machine.
3034

3135
```bash
3236
git clone https://github.com/spring-guides/gs-spring-boot.git
@@ -35,9 +39,9 @@ git clone https://github.com/spring-guides/gs-spring-boot.git
3539
## Build the Spring Boot application
3640
Inside the *gs-spring-boot/complete* directory, run the command below to build the application
3741

38-
```bash
39-
./gradlew build
40-
```
42+
```bash
43+
./gradlew build
44+
```
4145

4246
## Package the Spring Boot application
4347
1. Inside the *gs-spring-boot* directory in your clone, run the `yo azuresfguest` command.
@@ -132,6 +136,8 @@ At this stage, you have created a Service Fabric application for the Spring Boot
132136
133137
You can now access the Spring Boot application that was deployed to a Service Fabric cluster.
134138
139+
For more information, see the Spring Boot [Getting Started](https://spring.io/guides/gs/spring-boot/) sample on the Spring website.
140+
135141
## Scale applications and services in a cluster
136142
137143
Services can be scaled across a cluster to accommodate for a change in load on the services. You scale a service by changing the number of instances running in the cluster. There are many ways of scaling your services, for example, you can use scripts or commands from Service Fabric CLI (sfctl). The following steps use Service Fabric Explorer.

0 commit comments

Comments
 (0)