how do you set up your Kubernetes provideR?
# general
b
how do you set up your Kubernetes provideR?
a
Copy code
const k8sCluster = new azure.containerservice.KubernetesCluster( baseClusterName, {
       <snipped>
}, { dependsOn: [adSpPassword] }
);


export const kubeConfig = pulumi.secret(k8sCluster.kubeConfigRaw);
const k8sProvider = new k8s.Provider("aksK8s", { kubeconfig: k8sCluster.kubeConfigRaw });
is in a pulumi app that provisions the cluster. Other apps get the exported kubeConfig and create the provider the same way as the last line in this snippet
b
you'll need to double check the value of that kubeconfig inside your pipeline, something isn't right
to answer your original question: nothing has changed here
as far as I'm aware, that is
a
ok
Thanks