Helm : how do I Install the latest helm chart from repo
How do I download the latest chart of package which already has different versions to it?
I tried adding the incubator repo using helm repo add <repo-name> <repo-url>
and then did a helm repo update
. And when I tried to download/install the latest chart using the below command:
helm install helm-name repo/chart-name
It throws the error below:
Error:
[debug] Created tunnel using local port: '37220'
[debug] SERVER: "127.0.0.1:37220"
[debug] Original chart version: ""
Error: chart "chart-name" matching not found in repo index. (try 'helm repo update'). No chart version found for chart-name-
Any ideas on how to download the latest chart instead of specifying the chart version everytime?
Or
Does this download the latest charts only if the semver is used for versioning of charts?
kubernetes kubernetes-helm
add a comment |
How do I download the latest chart of package which already has different versions to it?
I tried adding the incubator repo using helm repo add <repo-name> <repo-url>
and then did a helm repo update
. And when I tried to download/install the latest chart using the below command:
helm install helm-name repo/chart-name
It throws the error below:
Error:
[debug] Created tunnel using local port: '37220'
[debug] SERVER: "127.0.0.1:37220"
[debug] Original chart version: ""
Error: chart "chart-name" matching not found in repo index. (try 'helm repo update'). No chart version found for chart-name-
Any ideas on how to download the latest chart instead of specifying the chart version everytime?
Or
Does this download the latest charts only if the semver is used for versioning of charts?
kubernetes kubernetes-helm
usehelm repo list
to see whether your desired repo existed in local helm.
– Abu Hanifa
Nov 14 '18 at 11:42
add a comment |
How do I download the latest chart of package which already has different versions to it?
I tried adding the incubator repo using helm repo add <repo-name> <repo-url>
and then did a helm repo update
. And when I tried to download/install the latest chart using the below command:
helm install helm-name repo/chart-name
It throws the error below:
Error:
[debug] Created tunnel using local port: '37220'
[debug] SERVER: "127.0.0.1:37220"
[debug] Original chart version: ""
Error: chart "chart-name" matching not found in repo index. (try 'helm repo update'). No chart version found for chart-name-
Any ideas on how to download the latest chart instead of specifying the chart version everytime?
Or
Does this download the latest charts only if the semver is used for versioning of charts?
kubernetes kubernetes-helm
How do I download the latest chart of package which already has different versions to it?
I tried adding the incubator repo using helm repo add <repo-name> <repo-url>
and then did a helm repo update
. And when I tried to download/install the latest chart using the below command:
helm install helm-name repo/chart-name
It throws the error below:
Error:
[debug] Created tunnel using local port: '37220'
[debug] SERVER: "127.0.0.1:37220"
[debug] Original chart version: ""
Error: chart "chart-name" matching not found in repo index. (try 'helm repo update'). No chart version found for chart-name-
Any ideas on how to download the latest chart instead of specifying the chart version everytime?
Or
Does this download the latest charts only if the semver is used for versioning of charts?
kubernetes kubernetes-helm
kubernetes kubernetes-helm
edited Nov 14 '18 at 9:44
Emruz Hossain
1,114310
1,114310
asked Nov 14 '18 at 7:55
Sitharthan AnbazhakanSitharthan Anbazhakan
123
123
usehelm repo list
to see whether your desired repo existed in local helm.
– Abu Hanifa
Nov 14 '18 at 11:42
add a comment |
usehelm repo list
to see whether your desired repo existed in local helm.
– Abu Hanifa
Nov 14 '18 at 11:42
use
helm repo list
to see whether your desired repo existed in local helm.– Abu Hanifa
Nov 14 '18 at 11:42
use
helm repo list
to see whether your desired repo existed in local helm.– Abu Hanifa
Nov 14 '18 at 11:42
add a comment |
3 Answers
3
active
oldest
votes
It means that the chart you want to install doesn't exist in the repository. Try to list all the charts .
Try helm repo list
to get the list of all existing charts.
I've just tried helm install incubator/vdfgdfgdfgfdg --dry-run --debug
to simulate the install of some non-existing chart and got the same error:
helm install incubator/vdfgdfgdfgfdg --dry-run --debug
[debug] Created tunnel using local port: '45830'
[debug] SERVER: "127.0.0.1:45830"
[debug] Original chart version: ""
Error: chart "vdfgdfgdfgfdg" matching not found in incubator index. (try 'helm repo update'). no chart name found
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:30
add a comment |
According to helm docs installing latest version is default behaviour, unless you specify exact version you want. As already described above, your issue most likely caused by missing or misspelled chart and not related to versions.
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:31
add a comment |
Keep in mind that detecting the latest
chart version requires that your chart has a valid SemVer (see https://docs.helm.sh/chart_best_practices/#versions)
Otherwise the latest
mechanism won't work.
Check helm search
to find out whether your desired chart is listed/ available in repo.
Thanks. I have versions like 18.08.00-62 , 18.08.00-63 Is this valid semVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:32
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295380%2fhelm-how-do-i-install-the-latest-helm-chart-from-repo%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
It means that the chart you want to install doesn't exist in the repository. Try to list all the charts .
Try helm repo list
to get the list of all existing charts.
I've just tried helm install incubator/vdfgdfgdfgfdg --dry-run --debug
to simulate the install of some non-existing chart and got the same error:
helm install incubator/vdfgdfgdfgfdg --dry-run --debug
[debug] Created tunnel using local port: '45830'
[debug] SERVER: "127.0.0.1:45830"
[debug] Original chart version: ""
Error: chart "vdfgdfgdfgfdg" matching not found in incubator index. (try 'helm repo update'). no chart name found
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:30
add a comment |
It means that the chart you want to install doesn't exist in the repository. Try to list all the charts .
Try helm repo list
to get the list of all existing charts.
I've just tried helm install incubator/vdfgdfgdfgfdg --dry-run --debug
to simulate the install of some non-existing chart and got the same error:
helm install incubator/vdfgdfgdfgfdg --dry-run --debug
[debug] Created tunnel using local port: '45830'
[debug] SERVER: "127.0.0.1:45830"
[debug] Original chart version: ""
Error: chart "vdfgdfgdfgfdg" matching not found in incubator index. (try 'helm repo update'). no chart name found
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:30
add a comment |
It means that the chart you want to install doesn't exist in the repository. Try to list all the charts .
Try helm repo list
to get the list of all existing charts.
I've just tried helm install incubator/vdfgdfgdfgfdg --dry-run --debug
to simulate the install of some non-existing chart and got the same error:
helm install incubator/vdfgdfgdfgfdg --dry-run --debug
[debug] Created tunnel using local port: '45830'
[debug] SERVER: "127.0.0.1:45830"
[debug] Original chart version: ""
Error: chart "vdfgdfgdfgfdg" matching not found in incubator index. (try 'helm repo update'). no chart name found
It means that the chart you want to install doesn't exist in the repository. Try to list all the charts .
Try helm repo list
to get the list of all existing charts.
I've just tried helm install incubator/vdfgdfgdfgfdg --dry-run --debug
to simulate the install of some non-existing chart and got the same error:
helm install incubator/vdfgdfgdfgfdg --dry-run --debug
[debug] Created tunnel using local port: '45830'
[debug] SERVER: "127.0.0.1:45830"
[debug] Original chart version: ""
Error: chart "vdfgdfgdfgfdg" matching not found in incubator index. (try 'helm repo update'). no chart name found
answered Nov 14 '18 at 11:09
Anna SlastnikovaAnna Slastnikova
692
692
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:30
add a comment |
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:30
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:30
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:30
add a comment |
According to helm docs installing latest version is default behaviour, unless you specify exact version you want. As already described above, your issue most likely caused by missing or misspelled chart and not related to versions.
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:31
add a comment |
According to helm docs installing latest version is default behaviour, unless you specify exact version you want. As already described above, your issue most likely caused by missing or misspelled chart and not related to versions.
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:31
add a comment |
According to helm docs installing latest version is default behaviour, unless you specify exact version you want. As already described above, your issue most likely caused by missing or misspelled chart and not related to versions.
According to helm docs installing latest version is default behaviour, unless you specify exact version you want. As already described above, your issue most likely caused by missing or misspelled chart and not related to versions.
answered Nov 14 '18 at 11:17
getslafgetslaf
1474
1474
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:31
add a comment |
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:31
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:31
Thanks I have the required chart in repo. I probably thing this issue is due to SemVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:31
add a comment |
Keep in mind that detecting the latest
chart version requires that your chart has a valid SemVer (see https://docs.helm.sh/chart_best_practices/#versions)
Otherwise the latest
mechanism won't work.
Check helm search
to find out whether your desired chart is listed/ available in repo.
Thanks. I have versions like 18.08.00-62 , 18.08.00-63 Is this valid semVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:32
add a comment |
Keep in mind that detecting the latest
chart version requires that your chart has a valid SemVer (see https://docs.helm.sh/chart_best_practices/#versions)
Otherwise the latest
mechanism won't work.
Check helm search
to find out whether your desired chart is listed/ available in repo.
Thanks. I have versions like 18.08.00-62 , 18.08.00-63 Is this valid semVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:32
add a comment |
Keep in mind that detecting the latest
chart version requires that your chart has a valid SemVer (see https://docs.helm.sh/chart_best_practices/#versions)
Otherwise the latest
mechanism won't work.
Check helm search
to find out whether your desired chart is listed/ available in repo.
Keep in mind that detecting the latest
chart version requires that your chart has a valid SemVer (see https://docs.helm.sh/chart_best_practices/#versions)
Otherwise the latest
mechanism won't work.
Check helm search
to find out whether your desired chart is listed/ available in repo.
answered Nov 14 '18 at 15:45
axdotlaxdotl
11
11
Thanks. I have versions like 18.08.00-62 , 18.08.00-63 Is this valid semVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:32
add a comment |
Thanks. I have versions like 18.08.00-62 , 18.08.00-63 Is this valid semVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:32
Thanks. I have versions like 18.08.00-62 , 18.08.00-63 Is this valid semVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:32
Thanks. I have versions like 18.08.00-62 , 18.08.00-63 Is this valid semVer
– Sitharthan Anbazhakan
Nov 16 '18 at 5:32
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295380%2fhelm-how-do-i-install-the-latest-helm-chart-from-repo%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
use
helm repo list
to see whether your desired repo existed in local helm.– Abu Hanifa
Nov 14 '18 at 11:42