Hi guys! What is the best way to install istio wit...
# kubernetes
e
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
Copy code
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
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.