I’m experimenting with the operator for a project ...
# pulumi-kubernetes-operator
e
I’m experimenting with the operator for a project at work. I can see that there is a way to set stack secrets via Kubernetes Secret. Is there a way to set stack config via ConfigMaps? From the docs, it looks like this can only be provided inline.
Moreover, it would be awesome if when a change is made to SecretRef (or something like a ConfigMapRef if that’s possible), the pulumi operator would re-sync on
kubectl apply
for the stack. I guess what I’m trying to accomplish is dynamic config. I was able to get it to work when
continueResyncOnCommitMatch
to true, but is that the optimal way to accomplish this?