Paul Stack

Results 43 issues of 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...

type/bug
stage/accepted
theme/deploy

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...

kind/bug
impact/performance
p1
area/codegen

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{...

kind/bug
language/go
area/codegen

The dashboard option of the cluster was removed in 2020 - we should remove this as part of the 1.0 work

kind/engineering
1.0

Fixes: #607

impact/no-changelog-required

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

kind/engineering
1.0

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...

kind/enhancement
1.0

Fixes: #510 ``` const cluster2 = new eks.Cluster(`${projectName}-2`, { storageClasses: { "mygp2": { type: "gp2", default: true, encrypted: true, }, "mygp3": { type: "gp3", } }, }); ``` It's important...