bored-spoon-83710
08/23/2022, 6:17 PMbillowy-army-68599
bored-spoon-83710
08/23/2022, 6:21 PM_, err = helm.NewChart(ctx, t.name+"-"+chartName,
helm.ChartArgs{
Path: pulumi.String(path.Join(path.Dir(currentFile), "helm")),
Namespace: t.Namespace.Metadata.Name().Elem(),
Values: values,
},
pulumi.Parent(t),
)
if err != nil {
return errors.NewResourceCreationError("Helm chart", chartName, err)
}
t.name
prefix, I get the duplicate error issue, but with it, all the resources deployed by the chart have t.name
prefix in their name.billowy-army-68599
bored-spoon-83710
08/23/2022, 6:25 PMbillowy-army-68599
else Pulumi complains about duplicate resource URN
duplicate urns are easy to fix, if you want to go down that path
t.name+"-"+chartName
so you can override it if you wishbored-spoon-83710
08/23/2022, 6:34 PMbillowy-army-68599
bored-spoon-83710
08/23/2022, 6:37 PMmake build
and it gave me a working Go SDK, but I’ve errors about Java (the requirements for Java aren’t indicated in the CONTRIBUTING.md
file) and I get a lot of space differences in the Go SDK files which seems strange. Can you give me hint please?