This message was deleted.
s
This message was deleted.
b
yes, set the name in the metadata
Copy code
ns = k8s.core.v1.Namespace(
    "cool",
    metadata=k8s.meta.v1.ObjectMetaArgs(
        name="cool-namespace",
    ),
)
g
Awesome thanks!
a
@glamorous-australia-21342 here’s some documentation about auto-naming and its tradeoffs: https://www.pulumi.com/docs/intro/concepts/resources/names/#autonaming
👍 1