Skip to content
New issue

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

Python Helm values seem to be ignored #675

Closed
lblackstone opened this issue Jul 31, 2019 · 0 comments · Fixed by #676
Closed

Python Helm values seem to be ignored #675

lblackstone opened this issue Jul 31, 2019 · 0 comments · Fixed by #676
Assignees
Labels
area/helm kind/bug Some behavior is incorrect or out of spec language/python
Milestone

Comments

@lblackstone
Copy link
Member

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).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/helm kind/bug Some behavior is incorrect or out of spec language/python
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant