8 instantiations of HelmExpressionWithValue
Aspire.Hosting.Kubernetes (8)
KubernetesResource.cs (8)
147Parameters[imageEnvName] = new(expression, value); 190Parameters[paramName] = new(helmExpression, defaultPort); 340Secrets[key] = new(secretExpression, stringValue); 345EnvironmentVariables[key] = new(configExpression, stringValue); 351EnvironmentVariables[key] = new(configExpression, value.ToString() ?? string.Empty); 469return new(expression, (string?)null); 473return new(expression, parameter); 488return new(helmExpression, parameter.ValueExpression);
8 references to HelmExpressionWithValue
Aspire.Hosting.Kubernetes (8)
KubernetesPublishingContext.cs (1)
117Dictionary<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; } = []; 308case HelmExpressionWithValue helmExpression: 322private void ProcessEnvironmentHelmExpression(HelmExpressionWithValue helmExpression, string key) 458private static HelmExpressionWithValue AllocateParameter(ParameterResource parameter, IResource resource) 477private static HelmExpressionWithValue ResolveUnknownValue(IManifestExpressionProvider parameter, IResource resource)