This message was deleted.
# getting-started
s
This message was deleted.
s
I can just write my own tool to scrape the k8s API and gather information about Pulumi helm deployments. Like
Copy code
result = v1.list_namespaced_pod( "default", label_selector="<http://app.kubernetes.io/managed-by=pulumi|app.kubernetes.io/managed-by=pulumi>",watch=False)
but if there's any community ideas that sound better, I'd like to know.
b
a
helm.Chart
doesn’t install it as a helm release, it uses
helm template
to render the yaml as a standard kubernetes object. if you want the helm release functionality, use
helm.Release
🙌 1
s
I'm going to dig into helm.Release a bit deeper. Thank you!