purple-plumber-90981
06/05/2024, 4:39 AM<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
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')]),
)
modern-zebra-45309
06/05/2024, 12:01 PMk8s.KubeClientSettingsArgs
, see https://github.com/pulumi/pulumi-kubernetes/blob/master/sdk/python/pulumi_kubernetes/_inputs.py#L116 and https://github.com/pulumi/pulumi-kubernetes/blob/master/sdk/python/pulumi_kubernetes/provider.py#L24modern-zebra-45309
06/05/2024, 12:03 PMNo matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by