I'm working with helm charts and I'm trying to gra...
# golang
b
I'm working with helm charts and I'm trying to grab the cluster IP of a service.
Copy code
clusterIP := chart.GetResource("v1/Service", "onepassword-connect", Namespace).ApplyT(
			func(r interface{}) (pulumi.StringPtrOutput, error) {
				return r.(*corev1.Service).Spec.ClusterIP(), nil
			},
		)