mirror of https://github.com/pulumi/pulumi.git
33b5ad6527
The Go language host cannot resolve dependencies or plugins if a Pulumi program vendors its dependencies. BACKGROUND The GetRequiredPlugins and GetProgramDependencies methods of the Go language host rely on the following two commands: go list -m -mod=mod all go list -m -mod=mod ... # '...' means current module and its descendants GetRequiredPlugins additionally searches the source directories for each returned module for pulumi-plugin.json files at a pre-determined paths. $module/pulumi-plugin.json $module/go/pulumi-plugin.json $module/go/*/pulumi-plugin.json This works for most Pulumi programs, except those that vendor private dependencies with 'go mod vendor'. For those programs, the above commands fail because -mod=mod forces them to run in module mode, and their private dependencies are not accessible in module mode (because they are not exposed publicly). We use the -mod=mod flag to force 'go list' to run in module mode because otherwise, it will automatically use vendor mode if a vendor directory is present. However, in vendor mode, the two 'go list' commands above are not supported. The following links add more context on why, but in short: vendor does not have enough information for the general 'go list'. - https://stackoverflow.com/a/60660593, - https://github.com/golang/go/issues/35589#issuecomment-554488544 In short, - list all with -mod=mod fails because the dependency is private - list without -mod=mod will use vendor mode - vendor mode doesn't support the listing all SOLUTION Drop the -mod=mod flag so that 'go list' can decide whether to run in module mode or vendor mode. However, instead of running it with 'all' or '...', pass in a list of dependencies extracted from the go.mod. go list -m import/path1 import/path2 # ... This operation is completely offline in vendor mode so it can list information about private dependencies too. This alone isn't enough though because in vendor mode, the JSON output does not include the module root directory. E.g. % go list -mod=vendor -json -m github.com/pulumi/pulumi/sdk/v3 { "Path": "github.com/pulumi/pulumi/sdk/v3", "Version": "v3.55.0", "GoVersion": "1.18" } # Versus % go list -mod=mod -json -m github.com/pulumi/pulumi/sdk/v3 { "Path": "github.com/pulumi/pulumi/sdk/v3", "Version": "v3.55.0", "Time": "2023-02-14T11:04:22Z", "Dir": "[...]/go/pkg/mod/github.com/pulumi/pulumi/sdk/v3@v3.55.0", "GoMod": "[...]/go/pkg/mod/cache/download/github.com/pulumi/pulumi/sdk/v3/@v/v3.55.0.mod", "GoVersion": "1.18" } Therefore, we have to manually calculate the path for each module root. That's easy enough: vendor/$importPath. Lastly, since GetProgramDependencies only needs a dependency list, it now extracts information from the go.mod without calling 'go list'. TESTING Adds a variant of the test added in #12715 that verifies the functionality with vendoring. It removes the sources for the dependencies to simulate private dependencies. The new test fails without the accompanying change. The fix was further manually verified against the reproduction included in #12526. % cd go-output % pulumi plugin rm -a -y % pulumi preview Previewing update (abhinav): Downloading plugin: 15.19 MiB / 15.19 MiB [=========================] 100.00% 0s [resource plugin random-4.8.2] installing Type Name Plan + pulumi:pulumi:Stack go-output-abhinav create + └─ random:index:RandomId rrr create Resources: + 2 to create % pulumi plugin ls NAME KIND VERSION SIZE INSTALLED LAST USED random resource 4.8.2 33 MB 26 seconds ago 26 seconds ago TOTAL plugin cache size: 33 MB Note that the version of random (4.8.2) is what's specified in the go.mod, not the latest release (v4.12.1). % grep pulumi-random go.mod github.com/pulumi/pulumi-random/sdk/v4 v4.8.2 With the plugin downloaded, I ran this again without an internet connection. % pulumi preview Previewing update (abhinav): Type Name Plan + pulumi:pulumi:Stack go-output-abhinav create + └─ random:index:RandomId rrr create Resources: + 2 to create This means that if the dependencies are vendored, and the plugin is already available, we won't make additional network requests, which also addresses #7089. Resolves #12526 Resolves #7089 |
||
---|---|---|
.. | ||
about | ||
aliases | ||
cloud_secrets_provider | ||
component_provider_schema | ||
config_basic | ||
config_capture_e2e/nodejs | ||
config_secrets_warn | ||
construct_component | ||
construct_component_error_apply | ||
construct_component_methods | ||
construct_component_methods_errors | ||
construct_component_methods_resources | ||
construct_component_methods_unknown | ||
construct_component_output_values | ||
construct_component_plain | ||
construct_component_provider | ||
construct_component_provider_propagation | ||
construct_component_resource_options | ||
construct_component_slow | ||
construct_component_unknown | ||
construct_nested_component/go | ||
custom_timeouts | ||
delete_before_create | ||
deleted_with | ||
dependency_steps | ||
double_pending_delete | ||
duplicate_urns | ||
dynamic | ||
ee_perf | ||
empty | ||
enums | ||
exclude_protected | ||
explicit_provider | ||
gather_plugin | ||
get_created | ||
get_resource | ||
go | ||
invalid_package_json | ||
large_resource | ||
nodejs | ||
partial_state | ||
partial_values | ||
policy | ||
printf | ||
project_main | ||
project_main_abs | ||
project_main_parent/foo | ||
protect_resources | ||
provider_secret_config | ||
python | ||
python_await | ||
query | ||
read | ||
recreate_resource_check | ||
refresh/go | ||
resource_refs_get_resource | ||
rotate_passphrase | ||
secret_outputs | ||
single_resource | ||
stack_bad_parenting | ||
stack_dependencies | ||
stack_outputs | ||
stack_parenting | ||
stack_project_name | ||
stack_reference | ||
stack_reference_multi/python | ||
stack_reference_secrets/nodejs | ||
steps | ||
targets | ||
transformations | ||
tsconfig | ||
types | ||
unsafe_snapshot_tests/bad_resource | ||
.gitignore | ||
appdash_test.go | ||
component_setup.sh | ||
integration_acceptance_test.go | ||
integration_go_acceptance_test.go | ||
integration_go_test.go | ||
integration_nodejs_acceptance_test.go | ||
integration_nodejs_test.go | ||
integration_python_acceptance_test.go | ||
integration_python_test.go | ||
integration_test.go | ||
integration_util_test.go |