Mike Chen

Results 12 comments of Mike Chen
trafficstars

What do you mean by "using an env var"? Do you mean hardcoding the value directly in the Dockerfile? If so I cannot do that as the value is a...

Wouldn't `--env` run into the same issue as `--build-args` since they are all parsed the same way in here https://github.com/whoan/docker-build-with-cache-action/blob/118708cf883bf7bcd2b659ecf5753c1cab7e22cc/docker-build.sh#L283?

Oh I see what you mean. Unfortunately I need this value at build time so injecting it at runtime will not work for me. I'll just keep a lookout for...

Hey sorry for the late response!! For the `--target` extra arg, it's giving an error when i include quotations for the value since it parses it as literally part of...

Hm. I'm still getting this issue from within Github Actions so I know it doesn't have to do with an unclean environment. The github action is running from within the...

I found the issue. My plugin in the statefile was ``` { "urn": "urn:pulumi:eks-dev::infrastructure::pulumi:providers:eks::default", "custom": true, "id": "f83332c1-2f57-4c82-8792-7b7907fdc272", "type": "pulumi:providers:eks" }, ``` I was missing the `inputs` and `outputs` sections:...

I realized this is basically a duplicate of https://github.com/pulumi/pulumi-kubernetes-operator/pull/245, but I'm keeping this open since it's a less stale branch

I noticed that the code is still referencing `v1alpha1`, but the latest Stack API version is `v1`: https://github.com/pulumi/pulumi-kubernetes-operator/blob/ef96c6d7cd4aeeb185e757f0f5dcac445ef62c53/pkg/controller/stack/metrics.go#L46

@zaceno in the sample code here: https://github.com/jorgebucaran/hyperapp/issues/1077#issuecomment-997814788 `state` inside `console.log(state)` is not defined. And the official docs still has the incorrect code. I've also looked at an outdated NPM package...

`transformations` doesn't seem to target child resources anymore (I'm on version `2.4.0` of the package). For example, this transformation on a `new Vpc` ``` transformations: [ (args) => { console.log(args.type)...