https://pulumi.com logo
Title
e

eager-analyst-8893

09/07/2020, 2:21 PM
Hi guys! What is the best way to install istio with pulumi? I'm generate manifest and then put it to gitrepo and run using k8s.yaml.ConfigFile like this
const istio = new k8s.yaml.ConfigFile("istio-1.7.yaml", {
    file: "istio/istio-1.7.yaml",
}, {dependsOn: istioSystemNamespace, providers: {kubernetes: k8sProvider}, customTimeouts: {create: "10m"}});
But may be there is more beautiful way to install ?
w

worried-ambulance-50217

09/07/2020, 7:11 PM
We are creating the manifests with istioctl, we are contemplating deploying them relying on the operator and creating a resource that gives us the status that the activity is complete or building a dynamic provider.