hi room… on the kubernetes provider i would like t...
# kubernetes
p
hi room… on the kubernetes provider i would like to pass KubeClientSettings as per
Copy code
<https://www.pulumi.com/registry/packages/kubernetes/api-docs/provider/#kubeclientsettings>
but nothing in the doc seems to indicate HOW to pass these values. I have tried as an object, list, string, dict … none of these have worked… any suggestions
Copy code
k8s_provider = k8s.Provider(
    "k8s_provider",
    # cluster=current_context,
    context=current_context,
    # kube_client_settings="burst=120,qps=50.0,timeout=120",
    # kube_client_settings=[burst=60,qps=30.0,timeout=120],
    # kube_client_settings=(burst=60,qps=30.0,timeout=120),
    # kube_client_settings={"burst": "60", "qps": "30.0", "timeout": "120"},
    kubeconfig='~/.kube/config',
    kubeconfig='~/.kube/config',
    opts=pulumi.ResourceOptions(depends_on=[ekscreate_stackref.get_output('eks_nodegroup')]),
)
In general, for Python (which you seem to be writing), it's always the "*Args" option in the section/table heading