We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from pulumi_kubernetes.helm.v2 import Chart, ChartOpts cert_manager_chart_opts = ChartOpts(chart="jetstack/cert-manager") cert_manager_chart_opts.values = \ { 'ingressShim': { 'defaultIssuerName': 'letsencrypt-prod', 'defaultIssuerKind': 'ClusterIssuer' }, 'webhook': { 'enabled': False } } # Deploy the cert manager. cert_manager = Chart( "cert-manager", cert_manager_chart_opts)
The webhook should be disabled in this example, but is still being installed (the default).
The text was updated successfully, but these errors were encountered:
lblackstone
Successfully merging a pull request may close this issue.
The webhook should be disabled in this example, but is still being installed (the default).
The text was updated successfully, but these errors were encountered: