9 instantiations of HelmExpressionWithValue
Aspire.Hosting.Kubernetes (9)
KubernetesResource.cs (9)
147Parameters[imageEnvName] = new(expression, value); 191Parameters[paramName] = new(helmExpression, defaultPort); 194EnvironmentVariables["ASPNETCORE_URLS"] = new(aspNetCoreUrlsExpression, $"http://+:${defaultPort}"); 343Secrets[key] = new(secretExpression, stringValue); 348EnvironmentVariables[key] = new(configExpression, stringValue); 354EnvironmentVariables[key] = new(configExpression, value.ToString() ?? string.Empty); 472return new(expression, (string?)null); 476return new(expression, parameter); 491return new(helmExpression, parameter.ValueExpression);
8 references to HelmExpressionWithValue
Aspire.Hosting.Kubernetes (8)
KubernetesPublishingContext.cs (1)
100Dictionary<string, KubernetesResource.HelmExpressionWithValue> contextItems,
KubernetesResource.cs (7)
21internal Dictionary<string, HelmExpressionWithValue> EnvironmentVariables { get; } = []; 22internal Dictionary<string, HelmExpressionWithValue> Secrets { get; } = []; 23internal Dictionary<string, HelmExpressionWithValue> Parameters { get; } = []; 311case HelmExpressionWithValue helmExpression: 325private void ProcessEnvironmentHelmExpression(HelmExpressionWithValue helmExpression, string key) 461private static HelmExpressionWithValue AllocateParameter(ParameterResource parameter, IResource resource) 480private static HelmExpressionWithValue ResolveUnknownValue(IManifestExpressionProvider parameter, IResource resource)