Paul Stack
Paul Stack
Currently, when a service deployment happens, levant assumes that the Job will have the update stanza assigned to it I currently use a template that looks like this: ``` job...
When upgrading the pulumi-aws provider to v3.26.1 of the bridge, we effectively changed the version of pulumi from v3.33.1 to v3.36.0. The change also brought in the following PR https://github.com/pulumi/pulumi-terraform-bridge/pull/568...
Our Go programgen is producing incorrect go programs for functions: ``` package main import ( "github.com/pulumi/pulumi-docker/sdk/v3/go/docker" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { ubuntuRegistryImage, err := docker.LookupRegistryImage(ctx, &GetRegistryImageArgs{...
The dashboard option of the cluster was removed in 2020 - we should remove this as part of the 1.0 work
Fixes: #607
We want to take advantage of a single binary to run this package so we should follow the same approach as per https://github.com/pulumi/pulumi-aws-apigateway/pull/48
The cloudformation template is for the creation of an Autoscaling group - we can handle this via pulumi-aws ASG and be able to expose all of the options available in...
Fixes: #510 ``` const cluster2 = new eks.Cluster(`${projectName}-2`, { storageClasses: { "mygp2": { type: "gp2", default: true, encrypted: true, }, "mygp3": { type: "gp3", } }, }); ``` It's important...