https://pulumi.com logo
Title
b

bright-controller-92189

01/19/2023, 5:58 PM
I am doing some testing on different types of deployments for Pulumi and for the moment I am testing the operator. I've tried multiple configuration but right now what I need is using ProgramObject. I have the following concerns regarding this approach: • How the providers are being injected, because we have only yaml and not a programming context? The Pulumi Yaml can be used in an airgapped env?
w

white-balloon-205

01/19/2023, 8:06 PM
Provider plugins will be dynamically acquired if possible, but you can also preinstall them into the operator container environment if running airgapped. You can do this with
pulumi plugin install
. You will need to ensure you have all required versions available if you are specifying explicit versions in your YAML.
b

bright-controller-92189

01/20/2023, 1:24 PM
Thank you for clarification!