does anyone know how kubernetes namespaces work wi...
# general
d
does anyone know how kubernetes namespaces work with the
getResourceProperty()
method? All the examples I’ve seen look like this:
Copy code
guestbook.getResourceProperty("v1/Service", "frontend", "status")
but I get an exception unless I prefix the resource name with the namespace:
Copy code
mysql.getResourceProperty("v1/Service", "idm-mysql", "spec")
...
TypeError: Cannot read property 'spec' of undefined
whereas this works:
mysql.getResourceProperty("v1/Service", "pulimi-test/idm-mysql", "spec")
what am I missing?