8 references to SecretsKey
Aspire.Hosting.Kubernetes (8)
Extensions\HelmExtensions.cs (3)
42
=> $"{ValuesSegment}.{
SecretsKey
}.{resourceName}.{parameterName}".ToHelmValuesSectionName().ToHelmExpression();
64
=> $"{resourceName.ToKubernetesResourceName()}-{
SecretsKey
}";
87
&& value.Contains($"{ValuesSegment}.{
SecretsKey
}.", StringComparison.Ordinal);
KubernetesEnvironmentResource.cs (1)
647
var section = parameter.Secret ? HelmExtensions.
SecretsKey
: HelmExtensions.ParametersKey;
KubernetesPublishingContext.cs (3)
30
[HelmExtensions.
SecretsKey
] = new Dictionary<string, object>(),
202
HelmExtensions.
SecretsKey
,
208
await AddValuesToHelmSectionAsync(resource, secretItems, HelmExtensions.
SecretsKey
).ConfigureAwait(false);
KubernetesResource.cs (1)
717
parameter.Secret ? HelmExtensions.
SecretsKey
: HelmExtensions.ConfigKey,