-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added helm remote repo example #5640
Conversation
Codecov Report
@@ Coverage Diff @@
## master #5640 +/- ##
==========================================
- Coverage 70.68% 70.67% -0.02%
==========================================
Files 408 408
Lines 15581 15581
==========================================
- Hits 11014 11012 -2
- Misses 3757 3758 +1
- Partials 810 811 +1
Continue to review full report at Codecov.
|
Is there any documentation for how to add authentication to a remote Helm repo? For instance, using a private GitHub repo as a Helm repo I need to provide my GitHub access token when adding the Helm repo if I do it manually: helm repo add example-repo --username "<GITHUB_USERNAME>" --password "<GITHUB_ACCESS_TOKEN>" 'https://raw.githubusercontent.com/my/helm/repo/' I don't see how to instruct Skaffold to add the username and password when using the 'repo' and 'remoteChart' options. I see there's a 'useHelmSecrets' config option, but can't find a single example using it anywhere similar to my case. |
@bouckj There is no support for adding Helm repositories on-the-fly though there has been a little bit of discussion on #2653. For now you would need to do this outside of Skaffold. Perhaps you could sketch how you add the repository currently on #2653 and describe how you retrieve the username and password secret? |
Fixes: #5517
Added helm remote repo example, per @gsquared94