8 instantiations of HelmExpressionWithValue
Aspire.Hosting.Kubernetes (8)
KubernetesResource.cs (6)
143Parameters[imageEnvName] = new(expression, value); 186Parameters[paramName] = new(helmExpression, defaultPort); 189EnvironmentVariables["ASPNETCORE_URLS"] = new(aspNetCoreUrlsExpression, $"http://+:${defaultPort}"); 299Secrets[key] = new(secretExpression, stringValue); 304EnvironmentVariables[key] = new(configExpression, stringValue); 310EnvironmentVariables[key] = new(configExpression, value.ToString() ?? string.Empty);
KubernetesServiceResourceExtensions.cs (2)
126return new(expression, value); 140return new(helmExpression, parameter.ValueExpression);
8 references to HelmExpressionWithValue
Aspire.Hosting.Kubernetes (8)
KubernetesPublishingContext.cs (1)
100Dictionary<string, KubernetesResource.HelmExpressionWithValue> contextItems,
KubernetesResource.cs (5)
21internal Dictionary<string, HelmExpressionWithValue> EnvironmentVariables { get; } = []; 22internal Dictionary<string, HelmExpressionWithValue> Secrets { get; } = []; 23internal Dictionary<string, HelmExpressionWithValue> Parameters { get; } = []; 267case HelmExpressionWithValue helmExpression: 281private void ProcessEnvironmentHelmExpression(HelmExpressionWithValue helmExpression, string key)
KubernetesServiceResourceExtensions.cs (2)
117private static HelmExpressionWithValue AllocateParameter(ParameterResource parameter, IResource resource) 129private static HelmExpressionWithValue ResolveUnknownValue(IManifestExpressionProvider parameter, IResource resource)