Skip to content

Commit 013ffde

Browse files
committed
change all TIP to NOTE
1 parent dc65566 commit 013ffde

25 files changed

+46
-46
lines changed

api/v4/bootstrap/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ HashSet<string> assemblyNamesToExclude = [SteeltoeAssemblyNames.ConfigurationCon
5151
builder.AddSteeltoe(assemblyNamesToExclude);
5252
```
5353

54-
> [!TIP]
55-
> The static class `SteeltoeAssemblyNames` enables to easily find the name of any specific assembly to exclude.
54+
> [!NOTE]
55+
> The static class `SteeltoeAssemblyNames` enables you to easily find the name of any specific assembly to exclude.
5656
5757
## Logging inside Configuration Providers
5858

api/v4/configuration/config-server-provider.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The following example shows some provider settings that have been put in a JSON
3535
* `Spring:Application:Name` configures the "application name" to be `sample`.
3636
* `Spring:Cloud:Config:Uri` configures the address of the Config Server.
3737

38-
> [!TIP]
38+
> [!NOTE]
3939
> The `Spring:Application:Name` key is also used by various other Steeltoe components.
4040
4141
```json
@@ -88,7 +88,7 @@ As mentioned earlier, all settings should start with `Spring:Cloud:Config:`.
8888
| `Health:Enabled` | Enable or disable Config Server health check contributor | `true` |
8989
| `Health:TimeToLive` | Health check contributor cache time to live, in milliseconds | `300_000` (5 min) |
9090

91-
> [!TIP]
91+
> [!NOTE]
9292
> If you use self-signed certificates on Cloud Foundry, you might run into certificate validation issues when pushing an application.
9393
> A quick way to work around this is to disable certificate validation until a proper solution can be put in place.
9494
@@ -158,7 +158,7 @@ When the `ConfigurationBuilder` builds the configuration, the Config Server clie
158158

159159
If there are any errors or problems accessing the server, the application continues to initialize, but the values from the server are not retrieved. If this is not the behavior you want, set `Spring:Cloud:Config:FailFast` to `true`. After that is done, the application fails to start if problems occur during the retrieval.
160160

161-
> [!TIP]
161+
> [!NOTE]
162162
> To diagnose startup errors, activate bootstrap logging as described in [Application Bootstrapping](../bootstrap/index.md#logging-inside-configuration-providers).
163163
164164
After the configuration has been built, you can access the retrieved data directly by using `IConfiguration`. See the following example:
@@ -284,5 +284,5 @@ Aside from PEM files, Steeltoe supports a single file in PKCS#12 format:
284284
}
285285
```
286286

287-
> [!TIP]
287+
> [!NOTE]
288288
> A single certificate can be shared with both Config Server and Eureka by using the key `Certificates` instead of `Certificates:ConfigServer`.

api/v4/configuration/random-value-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var builder = WebApplication.CreateBuilder(args);
5353
builder.Configuration.AddRandomValueSource();
5454
```
5555

56-
> [!TIP]
56+
> [!NOTE]
5757
> To generate random values as part of using placeholders, add the random value provider to the builder *before* you add the placeholder resolver.
5858
5959
### Access Random Value Data

api/v4/discovery/discovering-services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ To use this load balancer in service discovery, pass it to the `AddServiceDiscov
160160
builder.Services.AddHttpClient<OrderService>().AddServiceDiscovery<RoundRobinLoadBalancer>();
161161
```
162162

163-
> [!TIP]
163+
> [!NOTE]
164164
> When caching is activated (see above), this load balancer stores the last-used instance index in the cache.
165165
> Combining it with a shared Redis cache ensures an even load distribution.
166166

api/v4/discovery/initialize-discovery-client.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ builder.Services.AddConfigurationDiscoveryClient();
3737
var app = builder.Build();
3838
```
3939

40-
> [!TIP]
41-
> Alternatively, `builder.AddSteeltoe()` (Steeltoe Bootstrap Auto Configuration) can be used, which uses reflection to determine
40+
> [!NOTE]
41+
> Alternatively, you can use `builder.AddSteeltoe()` (Steeltoe Bootstrap Auto Configuration), which uses reflection to determine
4242
> which discovery assemblies are loaded, adding the appropriate clients automatically.
4343
4444
## Client configuration

api/v4/discovery/netflix-eureka.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For a complete understanding of the effects of many of these settings, we recomm
3131
In most cases, unless you are confident that you understand the effects of changing the values from their defaults,
3232
we recommend that you use the defaults.
3333

34-
> [!TIP]
34+
> [!NOTE]
3535
> Since Steeltoe v4, most of these settings can be changed at runtime, which updates the Eureka server accordingly.
3636
3737
### General
@@ -226,8 +226,8 @@ or:
226226
> [!NOTE]
227227
> To support certificate rotation, the configuration keys and the files on disk are automatically monitored for changes.
228228
229-
> [!TIP]
230-
> A single certificate can be shared with both Config Server and Eureka, by using the key "Certificates" instead of "Certificates:Eureka".
229+
> [!NOTE]
230+
> A single certificate can be shared with both Config Server and Eureka, by using the key `Certificates` instead of `Certificates:Eureka`.
231231
232232
### Using custom HTTP headers
233233

api/v4/management/cloud-foundry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ builder.Configuration.AddCloudFoundry();
4747
builder.Services.AddCloudFoundryActuator();
4848
```
4949

50-
> [!TIP]
50+
> [!NOTE]
5151
> It is recommended that you use `AddAllActuators()` instead of adding individual actuators,
5252
> which enables individually turning them on/off at runtime via configuration.
5353

api/v4/management/dbmigrations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var builder = WebApplication.CreateBuilder(args);
3636
builder.Services.AddDbMigrationsActuator();
3737
```
3838

39-
> [!TIP]
39+
> [!NOTE]
4040
> It is recommended that you use `AddAllActuators()` instead of adding individual actuators,
4141
> which enables individually turning them on/off at runtime via configuration.
4242

api/v4/management/health.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ var builder = WebApplication.CreateBuilder(args);
8282
builder.Services.AddHealthActuator();
8383
```
8484

85-
> [!TIP]
85+
> [!NOTE]
8686
> It is recommended that you use `AddAllActuators()` instead of adding individual actuators,
8787
> which enables individually turning them on/off at runtime via configuration.
8888
@@ -91,7 +91,7 @@ For example, when a health check fails, the response status code is `503 Service
9191
The configuration key `Management:Endpoints:UseStatusCodeFromResponse` can be set to `false`, which makes the health check always respond with status code `200 OK`.
9292
Clients can overrule this per request by sending an `X-Use-Status-Code-From-Response` HTTP header with the value `true` or `false`.
9393

94-
> [!TIP]
94+
> [!NOTE]
9595
> By default, health contributors for disk space and ping are activated. They can be turned off through configuration:
9696
>
9797
> ```json

api/v4/management/httpexchanges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ var builder = WebApplication.CreateBuilder(args);
102102
builder.Services.AddHttpExchangesActuator();
103103
```
104104

105-
> [!TIP]
105+
> [!NOTE]
106106
> It is recommended that you use `AddAllActuators()` instead of adding individual actuators,
107107
> which enables individually turning them on/off at runtime via configuration.
108108

0 commit comments

Comments
 (0)