Is there any way of performing the equivalent of `...
# kubernetes
m
Is there any way of performing the equivalent of
kubectl annotate namespace default foo=bar
without using
local.Command
and
kubectl
? I have looked for a way of fetching an existing namespace, but they apparently have to have been created by Pulumi. There is also no way of editing kubernetes native resources (such as namespaces) that I could find. Any help would be welcomed! 🙂 (adding link to the docs of what I am trying to achieve with Pulumi which we have been using terraform for so far).
b
Not at the moment, we will have server side apply very soon
m
Nice, for now it appears as if Flux can handle that for us.
g
Here’s the relevant RFC if you’re interested in reading more about the Pulumi implementation.
👍 1