eager-vase-43200
10/04/2021, 1:44 AMup
it work fine.
2021/10/03 18:42:04 Error in Watcher Error channel: fdopendir /private/var/folders/1t/xtppny2s3b53fzxhkmq7qhw40000gp/T/automation-logs-preview-3543494026: no such file or directory
FATA[0020] failed. err: failed to run infra automation for shared: failed to run pulumi: failed to run preview: failed to get preview summary
code: -2
rapid-raincoat-36492
10/06/2021, 10:30 PMawait stack.setAllConfig({
'aws:region': { value: 'eu-west-1' },
});
I see that a Pulumi.<stack-id>.yaml
file is created. Is there a way to supply config where no file gets created?eager-vase-43200
10/07/2021, 2:31 AMctx.Export(output-name, output-resource)
?
i would basically like to add entire objects as outputs as shown in the merge-request - https://github.com/pulumi/pulumi/pull/2311
it is possible to do that in terraform by just adding value = google_project.my-project
but when i do the same using ctx.Export()
and setting the second arg as the object retured by NewProject
func, i still see the same output for all resources.
output-name : {
URN: "urn-here"
ID : "resource-id"
PackageVersion: ""
}
colossal-vr-62639
10/11/2021, 9:30 AMcrooked-pillow-11944
10/12/2021, 8:20 PMvictorious-tomato-90057
10/13/2021, 4:22 AMrunSxScheck
in the sdk/nodejs/runtime/settings.ts
which compare the the module level global identifier sxsRandomIdentifier
. It will failed for the any pulumi runtimes if not point to same module even they have the same version. Is there any way we can bypass it ?crooked-pillow-11944
10/13/2021, 11:45 AMpolite-shoe-79877
10/14/2021, 7:05 AMws.installPlugin
or can it be done in an other way like when iam installing the node modules. I cant remember I installed any plugins locally but I got a bounch. Thanks :)adventurous-angle-51130
10/14/2021, 10:51 AMRefreshAsync
command before actually changing the state? Something like PreviewAsync
but for refresh instead.brief-processor-66221
10/18/2021, 1:45 PMacoustic-iron-92969
10/20/2021, 5:29 PMfailed to run update: exit status 255\ncode: 255\nstdout: Updating (my-test):\n \n\nstderr: error: failed to discover plugin requirements: grpc: error unmarshalling request: failed to unmarshal *pulumirpc.GetRequiredPluginsRequest\n\n
worried-lunch-10568
10/22/2021, 6:37 AMcreamy-nail-67991
10/29/2021, 10:09 AMDestroyAsync()
applies --skip-preview
flag. Is there another way to achieve a similar result?brave-afternoon-91593
11/01/2021, 4:31 PMproud-pizza-80589
11/03/2021, 7:38 AMerror: installing [resource plugin kubernetes-3.6.3] from : untarring file /Users/roderik/.pulumi/plugins/resource-kubernetes-v3.6.3/pulumi-resource-kubernetes: stream error: stream ID 1; PROTOCOL_ERROR
Got my new M1 Max and use node 16 with the automation api and this starts happening, doesn’t do this on Intel or in amd64 docker containers. Running regular pulumi programs works just fine.magnificent-lifeguard-15082
11/12/2021, 6:38 PM--path
set config behaviour with the [typescript] automation api?magnificent-lifeguard-15082
11/12/2021, 6:40 PMResource monitor is terminating
and becomes a little tricker to spot the actual isue.sticky-mechanic-98071
11/15/2021, 10:58 AMhandsome-state-59775
11/16/2021, 10:09 AMerror: post-step event returned an error: failed to verify snapshot: resource urn:pulumi:mandtpov::iac-azure::azure-native:resources:ResourceGroup$azure-native:containerservice:ManagedCluster$pulumi:providers:kubernetes$kubernetes:core/v1:Namespace::namespace-asdf refers to unknown provider urn:pulumi:qwerty::iac-azure::azure-native:resources:ResourceGroup$azure-native:containerservice:ManagedCluster$pulumi:providers:kubernetes::aksProvider::2b8c1005-6655-4ab1-bdff-320bc1e8ceca
gentle-businessperson-20313
11/19/2021, 2:03 PMmost-lighter-95902
11/22/2021, 10:44 PMmost-lighter-95902
11/22/2021, 10:44 PMmissing required configuration key "aws:region": The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc.
Set a value using the command `pulumi config set aws:region <value>`
most-lighter-95902
11/22/2021, 10:45 PMawait stack.setAllConfig(configMap)
to set multiple configs at the same timemost-lighter-95902
11/22/2021, 10:45 PMmost-lighter-95902
11/22/2021, 10:46 PMawait stack.setConfig('aws:region', { value: 'us-west-1' })
as per the tutorial doesn’t work either thoughnutritious-continent-38327
11/23/2021, 7:13 PMmost-lighter-95902
11/24/2021, 5:23 AMStackReference
doesn’t seem to work inside Automation API (at least when it’s not run inside the same program) - is this expected? If it’s not available, what options do I have for accessing another stack’s outputs?most-lighter-95902
11/26/2021, 3:51 AMawait LocalWorkspace.createOrSelectStack(args)
worked fine, but in order to use removeStack
, I switched the implementation to:
const projectSettings: ProjectSettings = {
name: projectName,
runtime: 'nodejs',
}
const ws = await LocalWorkspace.create({ projectSettings })
const stack = await Stack.createOrSelect(stackName, ws)
most-lighter-95902
11/26/2021, 3:51 AMstderr: error: failed to load language plugin nodejs: could not read plugin [/usr/local/bin/pulumi-language-nodejs] stdout: EOF
most-lighter-95902
11/26/2021, 3:52 AMmost-lighter-95902
11/26/2021, 3:52 AM