hundreds-musician-51496
11/19/2018, 6:39 PMpulumi plugin install
to get an AWS-related executable installed
β’ Manually move resource-aws-v0.16.2.tmp
to resource-aws-v0.16.2
(the plugin installation kept failing with the message:
"Error: installing [resource plugin aws-0.16.2] from <https://api.pulumi.com>: rename C:\Users\Justin\.pulumi\plugins\resource-aws-v0.16.2.tmp C:\Users\Justin\.pulumi\plugins\resource-aws-v0.16.2: Access is denied.")
microscopic-florist-22719
11/21/2018, 11:22 PMv0.16.3
of @pulumi/eks
. This release improves public vs. private subnet detection when auto-assigning worker nodes to subnets, and allows explicit specification of worker subnets instead of auto-assignment.cuddly-barista-79466
12/03/2018, 6:34 PMwarning: resource plugin vsphere is expected to have version >=0.16.1, but has ; the wrong version may be on your path, or this may be a bug in the plugin
bitter-oil-46081
12/06/2018, 10:31 PMCHANGELOG.md
file in the root of each repository.colossal-beach-47527
12/18/2018, 9:23 PMpip
trying to contact <http://pypi.pulumi.com|pypi.pulumi.com>
,
just edit ~/.config/pip/pip.conf
and remove the extra-index-url
field from
which references <http://pypi.pulumi.com|pypi.pulumi.com>
. After that, everything should work as normal.
If you have any questions please donβt hesitate to ask. Cheers!white-balloon-205
12/26/2018, 5:08 PM0.16.9
of the pulumi
CLI, which includes a fix for a recent performance regression. If you've been noticing slowness during pulumi update
operations, update to the latest release to pick up this fix (and a couple additional small improvements!).
More details: https://github.com/pulumi/pulumi/blob/master/CHANGELOG.md#0169-released-december-24th-2018acoustic-ambulance-64199
12/30/2018, 4:49 AMwhite-balloon-205
01/04/2019, 7:11 PMhelpful-advantage-49286
01/21/2019, 5:04 PMchilly-dusk-63796
01/25/2019, 5:49 PMbitter-oil-46081
01/29/2019, 2:19 AM<owner-name>/<project-name>/<stack-name>
, e.g if I wanted to reference some outputs from the "infra-dev" stack of the "infra" project in my account, I'd do new pulumi.StackReference("ellismg/infra/infra-dev");
When you do not specify the project name, the CLI will assume you want a stack from the current project, which is likely to be wrong. We apologize for any friction this causes. If you don't make this change, you should see errors saying that the referenced stack can't be found.
You'll also notice that URLs on app.pulumi.com now contain the name of the project a stack is in. We've temporally added some re-directs such that URLs generated by older CLIs continue to work as long as you don't duplicate a stack name across your account, but these redirects will be disabled at some point, so we encourage you to update any bookmarks you might have.
We'll be adding a gesture to the CLI soon to allow you to rename existing stacks, feel free to follow https://github.com/pulumi/pulumi/issues/2402 for information on that.
If you notice any weirdness with the new system, please feel free to either open issues on GitHub and tag me (@ellismg
) or reach out to me on Slack and we'll work to get you unblocked.
Hopefully being able to duplicate stack names across projects will make your life better. Thank you again for using Pulumi!bitter-oil-46081
01/31/2019, 8:54 PM0.16.13
version of @pulumi/pulumi
which would cause errors of the form: resproto.InvokeRequest is not a constructor
. This package was released earlier toady. We've already published a newer version, 0.16.14
that fixes this regression, and we apologize for any impact. We are still trying to understand how this was able to slip through our battery of tests, but wanted to get a fix out as soon as possible.gorgeous-egg-16927
02/08/2019, 6:59 PMhttps://youtu.be/ILMK65YVSKwβΎ
loud-plumber-25281
03/01/2019, 4:55 PMgorgeous-egg-16927
03/05/2019, 11:30 PMbroad-football-5123
03/19/2019, 10:33 PMproud-artist-4864
03/20/2019, 3:10 AMbroad-football-5123
03/21/2019, 10:18 PMstocky-spoon-28903
03/21/2019, 11:23 PMgorgeous-egg-16927
03/25/2019, 6:15 PMincalculable-sundown-82514
03/28/2019, 5:56 PMorange-policeman-59119
04/01/2019, 5:29 PMssd
. A stack that deploys with limited permissions to a namespace cannot and should not own that storage class, because storage classes are a global resource. So I'd like to conditionally choose the storage class for a volume in a statefulset with logic like:
const ssdClass = new k8s.storage.v1.StorageClass(
'ssd',
{ metadata: { name: 'ssd' }, ... },
{ readonly: true }, // or loadOnly, or load, or whatever, I just want to get the resource that currently exists in Kubernetes that matches the spec I've provided. if it differs, I'd like this to return undefined
);
// ... in the spec for statefulSet
storageClass: ssdClass ? ssdClass.metadata.name : undefined`
Edit: Actually, come to think of it that API won't work, new
will always return an instance of a class. So perhaps a static method on the Kubernetes resource, like: k8s.storage.v1.StorageClass#read
that returns an Output<k8s.storage.v1.StorageClass | undefined>
?chilly-dusk-63796
04/01/2019, 6:58 PMbroad-football-5123
04/02/2019, 9:02 PMpulumi logs
command? @white-balloon-205 gives you a quick overview and some of the ways it can be used as part of the inner loop of your Pulumi development.
https://blog.pulumi.com/unified-logs-with-pulumi-logsbroad-football-5123
04/04/2019, 10:08 PMbitter-oil-46081
04/08/2019, 8:53 PMpulumi logs
will now show log messages like gcloud functions logs read
would. As always, the Changelog (https://github.com/pulumi/pulumi/blob/master/CHANGELOG.md#0175-released-april-8-2019) has a complete set of changes. Both the bits installed by default with curl -L <https://get.pulumi.com> | sh
and brew
have been updated.
Also, for folks using GCP, much of the team will be at Google Cloud Next this week. We'll have a booth, so please stop by and say hello!broad-football-5123
04/09/2019, 2:01 PMbroad-football-5123
04/10/2019, 5:46 PMbillowy-laptop-45963
04/10/2019, 6:03 PMbroad-football-5123
04/18/2019, 12:54 PMbroad-football-5123
04/18/2019, 12:54 PM