-
Notifications
You must be signed in to change notification settings - Fork 36
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
Deploy eshop reference application fails with missing IdentityUrl configuration #252
Comments
I've been having this issue as well and temporarily solved it by editing the ConfigMap-files myself. That being said it seems like the |
In fact, not only IdentityUrl, but also many configurations in the Aspire Manifest file do not take effect. For example, some environment variables, External tags. |
I believe that Aspire is just for local debugging of microservice applications. If you want to deploy the application, unless you use Azure, you need knowledge of the corresponding platform to solve compatibility issues. |
I found the cause of the problem, which is quite dramatic. The current version does not support https. private static string HandleUrlBinding(string resourceName, string bindingName, Binding binding) =>
bindingName switch
{
Literals.Http => $"{Literals.Http}://{resourceName}:{binding.TargetPort}",
Literals.Https => string.Empty, // For now - disable https, only http is supported until we have a way to generate dev certs and inject into container for startup.
_ => HandleCustomServicePortBinding(resourceName, binding),
}; you can find this at Source Code |
🔥 Bug Description
I'm trying to deploy the eshop reference application (https://github.com/dotnet/eShop) using aspirate to a kubernetes cluster on docker desktop for mac. The webapp and webhooksclient don't run because the identityurl configuration is missing. The identityurl config is present in the manifest.
Aspirate version: 8.0.7
Eshop commit: c83b770cc618b9b82355f40f0734951d9f74f15c
🔍 Steps to Reproduce the Bug
git clone https://github.com/dotnet/eShop.git
cd eShop/src/eShop.AppHost
aspirate generate
aspirate apply
The text was updated successfully, but these errors were encountered: