damp-book-35965
03/13/2019, 8:37 PMconst ns = new k8s.core.v1.Namespace("test", {}, { provider: cluster.provider });
Why does it create it as test-zu7jbnvc
Is it possible to keep it as test only ?gentle-diamond-70147
03/13/2019, 8:53 PMname
attribute within the arguments block to override this.cool-egg-852
03/13/2019, 9:25 PMdamp-book-35965
03/13/2019, 9:38 PMgentle-diamond-70147
03/13/2019, 11:32 PMconst ns = new k8s.core.v1.Namespace("test", {
metadata: { name: "test" }
}, { provider: cluster.provider });
damp-book-35965
03/13/2019, 11:36 PM