Skip to content

Commit 2f97bd9

Browse files
committed
art3-1
1 parent 60f2437 commit 2f97bd9

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

articles/container-apps/java-config-server.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ In this tutorial, you learn to:
2929
3030
## Prerequisites
3131

32-
* An Azure account with an active subscription. If you don't already have one, you can [can create one for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
33-
* [Azure CLI](/cli/azure/install-azure-cli).
32+
- An Azure account with an active subscription. If you don't already have one, you can [can create one for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
33+
- [Azure CLI](/cli/azure/install-azure-cli).
3434

3535
## Considerations
3636

@@ -339,8 +339,8 @@ The following table describes the different Git backend configuration values ava
339339
| `spring.cloud.config.server.git.password` <br/> `spring.cloud.config.server.git.repos.{repoName}.password` | Password for authentication with remote repository. |
340340
| `spring.cloud.config.server.git.search-paths` <br/> `spring.cloud.config.server.git.repos.{repoName}.search-paths` | Search paths to use within local working copy. By default, searches only the root. |
341341
| `spring.cloud.config.server.git.force-pull` <br/> `spring.cloud.config.server.git.repos.{repoName}.force-pull` | Flag to indicate that the repository should force pull. If `true`, discard any local changes and take from the remote repository. |
342-
| `spring.cloud.config.server.git.default-label` <br/> `spring.cloud.config.server.git.repos.{repoName}.default-label` | The default label used for Git is **main**. If you don't set `spring.cloud.config.server.git.default-label` and a branch named **main** doesn't exist, the config server by default also tries to checkout a branch named **master**. If you'd like to disable the fallback branch behavior, you can set `spring.cloud.config.server.git.tryMasterBranch` to `false`. |
343-
| `spring.cloud.config.server.git.try-master-branch` <br/> `spring.cloud.config.server.git.repos.{repoName}.try-master-branch` | The config server by default tries to checkout a branch named **master**. |
342+
| `spring.cloud.config.server.git.default-label` <br/> `spring.cloud.config.server.git.repos.{repoName}.default-label` | The default label used for Git is **main**. If you don't set `spring.cloud.config.server.git.default-label` and a branch named **main** doesn't exist, the config server by default also tries to check out a branch named **master**. If you'd like to disable the fallback branch behavior, you can set `spring.cloud.config.server.git.tryMasterBranch` to `false`. |
343+
| `spring.cloud.config.server.git.try-master-branch` <br/> `spring.cloud.config.server.git.repos.{repoName}.try-master-branch` | The config server by default tries to check out a branch named **master**. |
344344
| `spring.cloud.config.server.git.skip-ssl-validation` <br/> `spring.cloud.config.server.git.repos.{repoName}.skip-ssl-validation` | You can disable the configuration server's validation of the Git server's TLS/SSL certificate by setting the `git.skipSslValidation` property to `true`. |
345345
| `spring.cloud.config.server.git.clone-on-start` <br/> `spring.cloud.config.server.git.repos.{repoName}.clone-on-start` | Flag to indicate that the repository should be cloned on startup, not on demand. Generally leads to slower startup but faster first query. |
346346
| `spring.cloud.config.server.git.timeout` <br/> `spring.cloud.config.server.git.repos.{repoName}.timeout` | Timeout in seconds for obtaining HTTP or SSH connection, if applicable. The default value is 5 seconds. |
@@ -350,7 +350,7 @@ The following table describes the different Git backend configuration values ava
350350
| `spring.cloud.config.server.git.host-key-algorithm` <br/> `spring.cloud.config.server.git.repos.{repoName}.host-key-algorithm` | One of `ssh-dss`, `ssh-rsa`, `ssh-ed25519`, `ecdsa-sha2-nistp256`, `ecdsa-sha2-nistp384`, or `ecdsa-sha2-nistp521`. Must be set if `host-key` is also set. |
351351
| `spring.cloud.config.server.git.strict-host-key-checking` <br/> `spring.cloud.config.server.git.repos.{repoName}.strict-host-key-checking` | `true` or `false`. If `false`, ignore errors with host key. |
352352
| `spring.cloud.config.server.git.repos.{repoName}` | URI of remote repository. |
353-
| `spring.cloud.config.server.git.repos.{repoName}.pattern` | The pattern format is a comma-separated list of `{application}/{profile}` names with wildcards. If `{application}/{profile}` does not match any of the patterns, it uses the default URI defined under. |
353+
| `spring.cloud.config.server.git.repos.{repoName}.pattern` | The pattern format is a comma-separated list of `{application}/{profile}` names with wildcards. If `{application}/{profile}` doesn't match any of the patterns, it uses the default URI defined under. |
354354

355355
The following list describes common configurations:
356356

@@ -366,7 +366,7 @@ The following list describes common configurations:
366366
- You can change the priority of all overrides in the client to be more like default values, letting applications supply their own values in environment variables or System properties, by setting the `spring.cloud.config.override-none=true` flag - the default is false - in the remote repository.
367367

368368
- `spring.cloud.config.allow-override`
369-
- If you enable config first bootstrap, you can allow client applications to override configuration from the config server by placing two properties within the applications configuration coming from the config server.
369+
- If you enable config first bootstrap, you can allow client applications to override configuration from the config server. The override is done by placing two properties within the applications configuration coming from the config server.
370370

371371
- `spring.cloud.config.server.health.*`
372372
- You can configure the Health Indicator to check more applications along with custom profiles and custom labels.

0 commit comments

Comments
 (0)