colossal-australia-65039
05/07/2021, 10:55 PMprovider
set and then later want to set the provider, is there a way to do this without having to recreate the namespace? I've tried updating the statefile directly with the provider I want from the pulumi preview
diff, but Pulumi does like my editsrich-farmer-40546
05/07/2021, 11:24 PMcolossal-australia-65039
05/07/2021, 11:29 PMrich-farmer-40546
05/07/2021, 11:33 PMconst ns = new k8s.core.v1.Namespace("test", {
metadata: {
name: name
},
}, {
provider,
import: name
});
colossal-australia-65039
05/07/2021, 11:36 PM