AzureCertManagerExtensions Methods
ClassMethods1 member
Provides AKS-specific overloads for installing cert-manager into an
AzureKubernetesEnvironmentResource. AddCertManager(IResourceBuilder<AzureKubernetesEnvironmentResource>, string, string?)Section titled AddCertManager(IResourceBuilder<AzureKubernetesEnvironmentResource>, string, string?)extensionIResourceBuilder<CertManagerResource> Installs cert-manager into the AKS cluster's underlying Kubernetes environment and returns a typed
Kubernetes.CertManagerResource that can host issuer resources. public static class AzureCertManagerExtensions{ public static IResourceBuilder<CertManagerResource> AddCertManager( this IResourceBuilder<AzureKubernetesEnvironmentResource> builder, string name, string? chartVersion = null) { // ... }}Parameters
builderIResourceBuilder<AzureKubernetesEnvironmentResource>The AKS environment resource builder.namestringThe Aspire resource name for the cert-manager installation.chartVersionstring?optionalThe cert-manager Helm chart version to install. Defaults to a pinned version validated against this Aspire build.Returns
IResourceBuilder<CertManagerResource>A reference to the ApplicationModel.IResourceBuilder`1 for chaining.Remarks
Delegates to
CertManagerExtensions.AddCertManager against the underlying AzureKubernetesEnvironmentResource.KubernetesEnvironment, mirroring the pattern used by AzureKubernetesIngressExtensions.AddHelmChart.