refined-pilot-45584
10/08/2022, 7:55 AMripe-russia-4239
10/10/2022, 10:21 AMCheckConfig()
? How do I know if the values provided to CheckConfig
were previously processed by it? (So the method can be skipped)miniature-musician-31262
10/11/2022, 12:58 AMgreat-queen-39697
10/11/2022, 6:18 PMgreat-queen-39697
10/11/2022, 6:19 PMgreat-queen-39697
10/12/2022, 4:46 PMgreat-queen-39697
10/12/2022, 5:17 PMgreat-queen-39697
10/12/2022, 5:38 PMhttps://youtu.be/GaOmXstUM2o▾
hallowed-printer-4781
10/12/2022, 10:11 PMbrash-gigabyte-81569
11/07/2022, 9:52 PMmake test_integration
mine was going to 30 minutes before I killed it on an M1flaky-arm-38472
11/08/2022, 8:11 AMfuture-barista-4090
11/08/2022, 8:45 AMflaky-arm-38472
11/08/2022, 3:13 PMmake ensure
and with all the requirements installed there is always an error after yarn install --frozen-lockfile
is executed. :
$ make ensure
cd sdk && go mod download
cd pkg && go mod download
cd tests && go mod download
Checking for go . ✓
make[1]: Entering directory '/home/x/go/src/github.com/pulumi/sdk/dotnet'
Checking for dotnet . ✓
# We want to dotnet restore all projects on startup so that omnisharp doesn't complain about lots of missing types on startup.
dotnet restore dotnet.sln
Determining projects to restore...
Restored /home/x/go/src/github.com/pulumi/sdk/dotnet/Pulumi.FSharp/Pulumi.FSharp.fsproj (in 280 ms).
Restored /home/x/go/src/github.com/pulumi/sdk/dotnet/Pulumi/Pulumi.csproj (in 280 ms).
Restored /home/x/go/src/github.com/pulumi/sdk/dotnet/Pulumi.Automation/Pulumi.Automation.csproj (in 280 ms).
Restored /home/x/go/src/github.com/pulumi/sdk/dotnet/Pulumi.Tests/Pulumi.Tests.csproj (in 448 ms).
Restored /home/x/go/src/github.com/pulumi/sdk/dotnet/Pulumi.Automation.Tests/Pulumi.Automation.Tests.csproj (in 449 ms).
make[1]: Leaving directory '/home/x/go/src/github.com/pulumi/sdk/dotnet'
make[1]: Entering directory '/home/x/go/src/github.com/pulumi/sdk/nodejs'
Checking for yarn . ✓
Checking for node . ✓
yarn install --frozen-lockfile
➤ YN0050: The --frozen-lockfile option is deprecated; use --immutable and/or --immutable-cache instead
➤ YN0070: Migrating from Yarn 1; automatically enabling the compatibility node-modules linker 👍
➤ YN0000: ┌ Resolution step
➤ YN0013: │ mockpackage@file:tests/mockpackage#tests/mockpackage::hash=4677a1&locator=%40pulumi%2Fpulumi%40workspace%3A. can't be found in the cache and wi
➤ YN0061: │ read-package-tree@npm:5.3.1 is deprecated: The functionality that this package provided is now in @npmcli/arborist
➤ YN0061: │ readdir-scoped-modules@npm:1.1.0 is deprecated: This functionality has been moved to @npmcli/fs
➤ YN0032: │ fsevents@npm:2.3.2: Implicit dependencies on node-gyp are discouraged
➤ YN0061: │ @npmcli/move-file@npm:2.0.1 is deprecated: This functionality has been moved to @npmcli/fs
➤ YN0000: └ Completed in 28s 901ms
➤ YN0000: ┌ Post-resolution validation
➤ YN0028: │ The lockfile would have been modified by this install, which is explicitly forbidden.
➤ YN0000: └ Completed
➤ YN0000: Failed with errors in 28s 991ms
make[1]: *** [Makefile:27: .ensure.phony] Error 1
make[1]: Leaving directory '/home/x/go/src/github.com/pulumi/sdk/nodejs'
make: *** [build/common.mk:211: sdk/nodejs_ensure] Error 2
I changed the --frozen-lockfile and the first warn dispaears but looks the YN0013 step is the one causing it to fail. I am missing something?great-queen-39697
11/09/2022, 2:21 PMgreat-queen-39697
11/09/2022, 4:58 PMbrash-gigabyte-81569
11/09/2022, 7:01 PMIt looks like the Pulumi SDK has not been installed. Have you run npm install or yarn install?
flaky-arm-38472
11/14/2022, 5:12 AMmost-state-94104
11/14/2022, 5:48 PMbrash-gigabyte-81569
11/15/2022, 9:22 PMargs.cluster.eksCluster.endpoint
. Everything compiles and builds but when I go to use that endpoint value it is outputting it as empty. I’ve tried doing things like args.cluster.eksCluster.endpoint.apply(endpoint => endpoint)
and args.cluster.eksCluster.apply(cluster => cluster.endpoint)
. I can’t think of anything else I should try and it is probably something simple I am missing.sparse-gold-10561
11/18/2022, 4:30 PMbrash-gigabyte-81569
11/29/2022, 9:17 PMmany-helicopter-89037
11/30/2022, 7:58 AM# build:: gen provider dotnet_sdk go_sdk nodejs_sdk python_sdk
build:: gen provider nodejs_sdk
# install:: install_nodejs_sdk install_dotnet_sdk
# cp $(WORKING_DIR)/bin/${PROVIDER} ${GOPATH}/bin
install:: install_nodejs_sdk
3. I'm getting this error on my make build install
step.
$ /home/shinebayar-g/github/pulumi-test-native/sdk/nodejs/node_modules/.bin/tsc
Done in 1.91s.
yarn unlink --cwd /home/shinebayar-g/github/pulumi-test-native/sdk/nodejs/bin
yarn unlink v1.22.19
warning ../package.json: No license field
error No registered package found called "@pulumi/test-native".
info Visit <https://yarnpkg.com/en/docs/cli/unlink> for documentation about this command.
make: [Makefile:115: install_nodejs_sdk] Error 1 (ignored)
yarn link --cwd /home/shinebayar-g/github/pulumi-test-native/sdk/nodejs/bin
yarn link v1.22.19
warning ../package.json: No license field
success Registered "@pulumi/test-native".
info You can now run `yarn link "@pulumi/test-native"` in the projects where you want to use this package and it will be used instead.
Done in 0.03s.
I see it generated sdk/nodejs
folder successfully. However I cannot run yarn link "@pulumi/linux-native
in the examples/simple
folder to test it out. Command just hangs..
I'd really appreciate if someone could help me to setup my provider.worried-rain-74420
11/30/2022, 4:12 PMpreview
or up
. If we add a workflow to install without also running preview
or up
, then we don't need setup-pulumi
anymore. 🖥️
4. #769: remove deprecated set-output
command. GitHub is removing support for set-output
. Help us migrate to a new logging strategy. 🚧
I'm happy to mentor any potential contributor on a PR for these issues! Feel free to reach out over Slack or via GitHub! 😸worried-engine-19547
12/08/2022, 5:09 PMpulumi new
command from the CLI only shows aiven-go
for https://www.pulumi.com/registry/packages/aiven/ but the page shows example for other programs as well?famous-jelly-72366
12/09/2022, 7:06 AMfamous-jelly-72366
12/09/2022, 7:08 AMabundant-telephone-90024
12/09/2022, 9:37 AMPULUMI_BOT_TOKEN
from the repository (https://github.com/pulumi/pulumi/blob/master/.github/workflows/ci-test-codegen.yml#L47).
As far as I can see, this has failed because my PR is from a fork of pulumi/pulumi.
How do you address this kind of PR? Is there something I should do to fix it?worried-engine-19547
12/09/2022, 7:38 PMpulumi up
, I see:
error: could not create stack: provided project name "--PROJECT-" doesn't match Pulumi.yaml
I see the same error when I try to pulumi up
on an existing package as well.
I already configured the credential export AIVEN_TOKEN=XXXXXXXXXXXXXX
which seemed like the only config I needed. What is it that I’m missing with the project name 🤔 ?abundant-telephone-90024
01/09/2023, 3:52 PMorange-policeman-59119
02/07/2023, 10:12 PMorange-policeman-59119
02/07/2023, 10:12 PM