```env: [ { ...
# dotnet
f
Copy code
env: [
                            {
                                name: "DD_KUBERNETES_KUBELET_HOST",
                                valueFrom: {
                                    fieldRef: {
                                        fieldPath: "status.hostIP",
                                    },
                                },
                            },
Is it possible to use "valueFrom" and how in Pulumi in C#?
t
f
I did find that but finally I went for another solution. Thanks for your response, though.