sparse-intern-71089
10/27/2021, 3:02 PMgray-city-50684
10/27/2021, 3:03 PMconst linkerdChart = new k8s.helm.v2.Chart("linkerd2",
{
chart: "linkerd2",
version: "2.10.2",
namespace: "linkerd",
values: {
...
},
fetchOpts: {
repo: "<https://helm.linkerd.io/stable/>"
},
transformations: chartTransformations
},
{
dependsOn: [ linkerdIdentityIssuerCertificate ],
parent: this,
}
);
const linkerdVizChart = new k8s.helm.v2.Chart("linkerd2-viz",
{
chart: "linkerd-viz",
version: "2.10.2",
namespace: "linkerd-viz",
fetchOpts: {
repo: "<https://helm.linkerd.io/stable/>"
},
transformations: chartTransformations
},
{
dependsOn: [ linkerdChart, linkerdIdentityIssuerCertificate ],
parent: this,
}
);
gray-city-50684
10/27/2021, 3:03 PMgray-city-50684
10/27/2021, 3:04 PMgray-city-50684
10/27/2021, 3:05 PMgray-city-50684
10/27/2021, 3:07 PMgray-city-50684
10/27/2021, 3:08 PMbillowy-army-68599
billowy-army-68599
gray-city-50684
10/27/2021, 4:22 PMbillowy-army-68599
helm.Release
resource might be a better betgray-city-50684
10/27/2021, 4:31 PMconst linkerdVizChart = new k8s.helm.v2.Chart("linkerd2-viz",
{
chart: "linkerd-viz",
version: "2.10.2",
namespace: "linkerd-viz",
fetchOpts: {
repo: "<https://helm.linkerd.io/stable/>"
},
transformations: chartTransformations
},
{
dependsOn: [ linkerdChart.ready ],
parent: this,
}
);
billowy-army-68599
gray-city-50684
10/27/2021, 4:34 PMdependsOn: linkerdChart.ready
is working, or do an apply on ready and then I can add other dependencies toogray-city-50684
10/27/2021, 4:34 PM