Eron Wright
Eron Wright
@AndreasMWalter I believe that the [WorkloadIdentityCredential](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity#WorkloadIdentityCredential) will activate in the Pipelines environment.
Thanks @codethief. I like the idea of adding explicit support via `useAzurePipelinesCredential`, as this seems to be how other tools have solved it. Meanwhile, https://github.com/Azure/azure-sdk-for-go/issues/23181 tracks the upstream task of...
Good news everyone, we just released a preview of Pulumi Kubernetes Operator v2. This new release has a whole-new architecture that uses pods as the execution environment. The installation process...
Here's an update on this issue, it is because the Kubernetes provider simply doesn't have support for converting a `helm_release` TF resource to a `kubernetes:helm.sh/v3:Release` Pulumi resource. I'm treating this...
It appears that TF conversion is not totally practical, because the schema of `helm.sh/v3:Release` is considerably different from the TF `helm_release`. The converter would need to transform the configuration beyond...
Good news everyone, we just released a preview of Pulumi Kubernetes Operator v2. This new release has a whole-new architecture that uses pods as the execution environment. All checks are...
The issue was due to an upstream bug in the scylla chart's schema; `cpu` was modeled as an `integer`. https://github.com/scylladb/scylla-operator/blob/42a0f1e3df9843066296a14a83c9add6cb48434b/helm/scylla/values.schema.json#L128-L130 Was fixed: https://github.com/scylladb/scylla-operator/commit/58ec5852e98bf85f57fcfeb5b59d6391acd61ddb
Closing as a duplicate of https://github.com/pulumi/pulumi-kubernetes/issues/2203
The issue here is that Pulumi is checking for a folder in the unpacked tar named `fission` rather than `fission-core`. Seems due to a too-restrictive regex: https://github.com/pulumi/pulumi-kubernetes/blob/78ab38748b9101d98890d86af44f5addb6c852dd/provider/pkg/provider/invoke_helm_template.go#L267-L290
I've confirmed that the issue is fixed in the upcoming Chart v4. This works as expected: ```ts import * as k8s from "@pulumi/kubernetes"; new k8s.helm.v4.Chart('fission', { chart: 'https://github.com/fission/fission/releases/download/1.12.0/fission-core-1.12.0.tgz', values: {...