Bryce Lampe

Results 196 comments of Bryce Lampe

A [regex manager](https://docs.renovatebot.com/modules/manager/regex/) can be used. https://github.com/renovatebot/renovate/issues/5794#issuecomment-1663446655 For example to update `stack:image: docker.io/foo/bar:v123` in `Pulumi.stack.yaml`: ``` customManagers: [ { customType: "regex", fileMatch: ["^Pulumi\\..+\\.yaml$"], matchStrings: [ '(?[\\w\\-.:]+):\\s+"?(?[\\w\\-\\/.]+):(?[\\w\\-.]+)', ], datasourceTemplate: "docker", },...

I think this is a duplicate of https://github.com/pulumi/pulumi-kubernetes/issues/2034 and/or https://github.com/pulumi/pulumi-kubernetes/issues/2997. The provider currently (unfortunately) ignores null values when handling inputs, which is significant for Helm values. If you're using v3...

@mkuennek give `allowNullValues` and `metrics: {}` a try. IIRC it will respect the empty object but not `null`.

To look into: per-resource credentials in addition to ambient creds. Ambient creds do work.

> @blampe what does the Docker provider do about OCI registry authentication, and can we do the same here? My preference would be to use ambient credentials only. I thought...

Related https://github.com/pulumi/pulumi-kubernetes/pull/3136

> I'm thinking pulumi could correctly recognize that the Ingress is properly defined (it has a "SuccessfullyReconciled" event), rather than inferring that something is still missing via the rules. @antifuchs...

@mrlnstpn can you include the full Helm resource you're using in your program? That will help us reproduce this. The underlying issue is probably tracked in https://github.com/pulumi/pulumi-kubernetes/issues/2997.

FWIW this was fixed in https://github.com/github/roadmap/issues/622, the docs should probably be updated.

> ``` > error: diffing urn:pulumi:dev::infrastructure-environment::azuread:index/group:Group::back-office-specialist: State version 1 is greater than schema version 0 for resource azuread_group. Please upgrade the provider to work with this resource. > ``` Interesting,...