Skip to content

Commit

Permalink
Fix azure-ts-aks-mean (pulumi#814)
Browse files Browse the repository at this point in the history
The Chart configuration was incorrectly specifying both the `repo` and `fetchOpts.repo`.
Also updated to use the v3 SDK.
  • Loading branch information
lblackstone authored Oct 23, 2020
1 parent d32fef0 commit f2ba8a6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions azure-ts-aks-mean/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@ const mongoConnStrings = new k8s.core.v1.Secret(
);

// Boot up nodejs Helm chart example using CosmosDB in place of in-cluster MongoDB.
const node = new k8s.helm.v2.Chart(
const node = new k8s.helm.v3.Chart(
"node",
{
repo: "bitnami",
chart: "node",
version: "4.0.1",
fetchOpts: {
Expand Down

0 comments on commit f2ba8a6

Please sign in to comment.