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

Update readme to explain the tls feature support status now for enterprise tier #16

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,12 @@ az spring-cloud app append-loaded-public-certificate \
--certificate-name ${CLIENT_SSL_CERTIFICATE_NAME} --load-trust-store true
```

> [!Reminder]
> Currently the auto-wiring of “--load-trust-store” is not compatible with java apps which requires build service, that includes java apps deployed from source code and all java apps in enterprise tier. We are now working on supporting these apps and it would be coming soon.
Descatles marked this conversation as resolved.
Show resolved Hide resolved
>
> For these apps which could not use the auto-wiring of “--load-trust-store”, we could still take the convenience of this feature to put the certificate into app's local environment by using append-loaded-public-certificate command with "--load-trust-store" set to false. Under that condition, the certificate could be found under folder /etc/azure-spring-cloud/certs/public/ in app's environment with the name you give it, you could load that manually by any way you want.
Descatles marked this conversation as resolved.
Show resolved Hide resolved
>

Build and deploy `greeting-external-service-v2`

```bash
Expand Down