plain-eye-9759
12/18/2019, 11:43 AMfolder
option for blob
My code looks like this
const myBlob = new azure.storage.Blob("blob-name", {
source: "my-path",
storageAccountName: "storage-aac-name",
storageContainerName: "container-name",
type: "Block",
name: "blob-name",
contentType: "text/plain"
})
tall-librarian-49374
12/18/2019, 11:54 AMplain-eye-9759
12/18/2019, 12:09 PMstocky-island-3676
12/18/2019, 12:10 PMpulumi stack init
: How can we set in which project
the stack will be created in?brave-window-69382
12/18/2019, 1:47 PMblue-portugal-12071
12/18/2019, 2:30 PMfull-painter-18061
12/18/2019, 2:54 PMpulumi preview
get stuck on the first pulumi:pulumi:Stack
create step of the plan?busy-umbrella-36067
12/18/2019, 4:52 PMkubernetes:allowImplicitProvider
We've started distributing an abstracted API for deploying onto k8s clusters but in some cases developers have been deploying to whatever their KUBECONFIG
env var is set toimportant-leather-28796
12/18/2019, 4:53 PMpulumi update
, how do I do that? I already pulled down the Deployment wait time with <http://pulumi.com/timeoutSeconds|pulumi.com/timeoutSeconds>
but the continued retries/restarts (resource limits are being hit) do not cause pulumi
to exit for quite a while. How can I reduce retries/shorten this wait or cycle time as I experiment?quaint-queen-45003
12/18/2019, 7:59 PMerror: could not deserialize deployment: decrypting secret value: [400] Message authentication failed
bitter-dentist-28132
12/18/2019, 10:09 PMboundless-appointment-60129
12/18/2019, 10:19 PM.get
function https://github.com/pulumi/pulumi-awsx/blob/5b247e093ed7e8a789c4a34663a5ef8a3a5acef3/nodejs/awsx/ecs/taskDefinition.ts#L226 which then leads to this error Error: Cannot call '.get' during update or preview.
. I was wondering if there's a correct way of using this or if the source needs an update?busy-umbrella-36067
12/18/2019, 10:23 PMpulumi update
and and modify your IaC code before accepting the prompt Pulumi will pick up the file changes when it applies the update.great-tomato-45422
12/19/2019, 8:24 PMgreat-tomato-45422
12/19/2019, 8:24 PMbitter-dentist-28132
12/19/2019, 8:50 PMgifted-engine-92308
12/20/2019, 9:48 AMflat-insurance-25294
12/20/2019, 10:43 AMdef run_command(command)
puts command
Open3.popen2e(command) do |stdin, stdout_err, wait_thr|
while line = stdout_err.gets
puts line
end
exit_status = wait_thr.value
abort "FAILED: #{command}" unless exit_status.success?
return exit_status
end
end
flat-insurance-25294
12/20/2019, 10:45 AMflat-insurance-25294
12/20/2019, 11:00 AMgifted-engine-92308
12/20/2019, 11:01 AMgifted-engine-92308
12/20/2019, 11:01 AMlet out = exec("pulumi up -y", (err, stdout) => {
if (err) {
console.log(err);
console.log(stdout);
throw new Error("Failed to call up on pulumi " + err);
}
observer.complete();
})
gifted-engine-92308
12/20/2019, 11:01 AMgifted-engine-92308
12/20/2019, 11:01 AMconst subp = execa.sync("pulumi", ['up', '-y'], {
cwd: options.targetDirectory
});
subp.stdout.pipe(process.stdout);
const { stdout } = await subp;
gifted-engine-92308
12/20/2019, 11:02 AMflat-insurance-25294
12/20/2019, 11:05 AMexeca?
flat-insurance-25294
12/20/2019, 11:06 AMgifted-engine-92308
12/20/2019, 11:07 AMgifted-engine-92308
12/20/2019, 11:07 AMError: Failed to call up on pulumi Error: Command failed: pulumi up -y
at exec (/Users/waynedouglas/src/sonaticket-pulumi/commands/up.js:25:15)
at ChildProcess.exithandler (child_process.js:301:5)
at ChildProcess.emit (events.js:198:13)
at ChildProcess.EventEmitter.emit (domain.js:448:20)
at maybeClose (internal/child_process.js:982:16)
at Socket.stream.socket.on (internal/child_process.js:389:11)
at Socket.emit (events.js:198:13)
at Socket.EventEmitter.emit (domain.js:448:20)
at Pipe._handle.close (net.js:607:12)
gifted-engine-92308
12/20/2019, 11:07 AM