busy-journalist-6936
08/13/2021, 2:58 PMk8s.helm.v3.chart
snippets.
It seems like I may need to learn how the aliases work due to URN collision as I'm getting the following error:
Diagnostics:
kubernetes:<http://apiextensions.k8s.io/v1:CustomResourceDefinition|apiextensions.k8s.io/v1:CustomResourceDefinition> (<http://kongplugins.configuration.konghq.com|kongplugins.configuration.konghq.com>):
error: Duplicate resource URN 'urn:pulumi:KongHybridGatewayOnEKS::Gateway::kubernetes:<http://helm.sh/v3:Chart$kubernetes:apiextensions.k8s.io/v1:CustomResourceDefinition::kongplugins.configuration.konghq.com';|helm.sh/v3:Chart$kubernetes:apiextensions.k8s.io/v1:CustomResourceDefinition::kongplugins.configuration.konghq.com';> try giving it a unique name
rough-farmer-61054
08/13/2021, 5:02 PMbusy-journalist-6936
08/13/2021, 5:07 PMrough-farmer-61054
08/13/2021, 5:09 PMbusy-journalist-6936
08/13/2021, 5:13 PMrough-farmer-61054
08/13/2021, 5:18 PMimport * as k8s from "@pulumi/kubernetes";
const ns = new k8s.core.v1.Namespace("ns")
const kongGatewayDP = new k8s.helm.v3.Chart("dataplane",{chart: "foo"}, {parent: ns})
busy-journalist-6936
08/13/2021, 5:20 PM--include-crds
is forced at the pulumi levelrough-farmer-61054
08/13/2021, 8:20 PMconst kongGatewayDP = new k8s.helm.v3.Chart("dataplane",{chart: "foo",skipCRDRendering: true}, {parent: ns})
busy-journalist-6936
08/13/2021, 8:29 PMrough-farmer-61054
08/13/2021, 8:31 PMbusy-journalist-6936
08/13/2021, 8:31 PMparent: kongGatewayCP,
skipCRDRendering: true,
These two lines of magic from you made my week. Thank you!!