salmon-sugar-1559
12/16/2024, 4:16 PMpulumi/pulumi:3.143.0-nonroot
docker image.
Inside my repository i reference fluxSource and inside it -> Pulumi.yaml contains:
name: msk
runtime:
name: python
config:
aws:region: ap-northeast-1
msk:environment: dev
I know i can build my own docker image with the packages but i was wondering what is the best practice here? Not sure why the error refers to
ModuleNotFoundError: No module named 'pulumi'
and
It looks like the Pulumi SDK has not been installed. Have you run pip install?\n\nIf you are running in a virtualenv, you must run pip install -r requirements.txt from inside the virtualenv.
I tried setting runtime.options.virtualenv: venv
but no luck. Locally everything works fine.
Any ideas? Thankssalmon-sugar-1559
12/17/2024, 1:41 AMruntime:
name: python
options:
toolchain: pip
virtualenv: venv
hallowed-photographer-31251
12/17/2024, 5:40 PMruntime:
name: python
this isn’t right, you want
runtime: python
salmon-sugar-1559
12/18/2024, 2:49 PMruntime: python
at least in the documentation it's like that:
runtime:
name: python
options:
toolchain: pip
virtualenv: venv
hallowed-photographer-31251
12/18/2024, 5:20 PMsalmon-sugar-1559
12/18/2024, 5:22 PMhallowed-photographer-31251
12/18/2024, 5:22 PM