You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allows the `chart` input argument to be used in more of the same ways allowed as argument to `helm install`. Makes `repo` optional to allow chart to be provided in forms that require fully qualified references. Actually expose the `fetchOpts` argument so that `--repo` (and other customerizations to fetch) can be passed. Adds some additional test coverage.
All of the following now work:
// #1
repo: "stable",
chart: "nginx-lego",
version: "0.3.1",
// #2
repo: "stable",
chart: "nginx-lego",
// #3
chart: "stable/nginx-lego",
// #4
chart: "stable/nginx-lego",
version: "0.3.1"
// #5
chart: "nginx-lego",
version: "0.3.1",
fetchOpts: {
repo: "https://kubernetes-charts.storage.googleapis.com"
},
// #6
chart: "nginx-lego",
fetchOpts: {
repo: "https://kubernetes-charts.storage.googleapis.com"
},
// #7
chart: "https://kubernetes-charts.storage.googleapis.com/nginx-lego-0.3.1.tgz",
Fixes#229.
Fixes#257.
Allows the `chart` input argument to be used in more of the same ways allowed as argument to `helm install`. Makes `repo` optional to allow chart to be provided in forms that require fully qualified references. Actually expose the `fetchOpts` argument so that `--repo` (and other customerizations to fetch) can be passed. Adds some additional test coverage.
All of the following now work:
// #1
repo: "stable",
chart: "nginx-lego",
version: "0.3.1",
// #2
repo: "stable",
chart: "nginx-lego",
// #3
chart: "stable/nginx-lego",
// #4
chart: "stable/nginx-lego",
version: "0.3.1"
// #5
chart: "nginx-lego",
version: "0.3.1",
fetchOpts: {
repo: "https://kubernetes-charts.storage.googleapis.com"
},
// #6
chart: "nginx-lego",
fetchOpts: {
repo: "https://kubernetes-charts.storage.googleapis.com"
},
// #7
chart: "https://kubernetes-charts.storage.googleapis.com/nginx-lego-0.3.1.tgz",
Fixes#229.
Fixes#257.
Adopt the changes in
pulumi{-terraform}
to move fromComputed
toInput
/Output
.The text was updated successfully, but these errors were encountered: