-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support a "command_prefix" option to customize how Pulumi gets invoked #4
Comments
So I tried a straight dep install using: - run:
name: Install dependecies
command: sudo pip install --upgrade pip==18.0 && pip install --user pulumi pulumi-gcp This actually works but obviously doesn't use the pipenv cmd. I just want to confirm that the issue was isolated to pipenv. |
So the behavior you are seeing is generally by design. In order to pick up the packages managed by If we were to update the For posterity, here are some other approaches:
|
This also impacts usage of the orb with My workaround is something like this (assuming you are using the python orb to install poetry deps):
|
This is the error produced in the
deploy_to_gcp:
job of my config when calling thepulumi/update:
orb functionI'm using pipenv and it looks like the pulumi/update function is kicking off outside of the pipenv environment which caused the installed deps to be hidden from the pulumi/update orb call. I'm unable to get the pulumi/update call to complete successfully when using pipenv to install deps.
Here is the config that I'm currently using. Some Jobs are comment out to save time.
The text was updated successfully, but these errors were encountered: