Ask Your Question
4

Can the ssh git repository URL be utilized with Helm?

asked 2021-10-16 11:00:00 +0000

nofretete gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2022-10-08 14:00:00 +0000

devzero gravatar image

Yes, Helm can use SSH Git repository URL to fetch charts. To use an SSH Git repository with Helm, first, you need to add the SSH key associated with the Git account to the machine where you want to run Helm. Then, you can provide the SSH Git repository URL as a parameter to the helm fetch or helm install command.

For example, to fetch a chart from an SSH Git repo, you can use the following command:

helm fetch ssh://user@ssh.repo.url/path/to/chart

Similarly, to install a chart from an SSH Git repo, you can use the following command:

helm install my-release ssh://user@ssh.repo.url/path/to/chart

Note that you may need to configure your Git credentials to authenticate with the SSH Git repo, depending on how the repo is set up.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-10-16 11:00:00 +0000

Seen: 13 times

Last updated: Oct 08 '22