billowy-army-68599
03/18/2020, 4:39 AMenough-greece-61665
03/18/2020, 12:46 PMServiceMonitor
resources from the graph as I found in this other pulumi ticket dealing with the same issues I was having (https://github.com/pulumi/pulumi-kubernetes/issues/285)const prometheus = new k8s.helm.v2.Chart("po", {
chart: 'prometheus-operator',
repo: 'stable',
version: '8.12.1',
transformations: [removeGrafanaTest, addNamespace(monitoringNamespaceName)],
namespace: monitoringNamespaceName,
values: {
kubeControllerManager: { enabled: false },
kubeEtcd: { enabled: false },
kubeScheduler: { enabled: false },
kubeProxy: {enabled: false},
coreDns: { enabled: false },
prometheusOperator: { createCustomResource: false }
}
}
}