-
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
Add an example for helm chart with multiple images #7874
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
Thanks for the submission @filipenf! Currently you have updated: We have recently forked our docs into a Additionally our repo has a unit test to enforce Conventional Commits. Can you ammend your commit message to add a prefix - Once these are resolved we can merge! |
@aaron-prindle thanks for the info, I just checked the helm.md in the v2 path you mentioned and I noticed that it is missing a few of the sections from the original file. Would you also like me to match those or should I just add the new bits? |
@filipenf just the new bits thanks! I believe the other differences are inherent to Skaffold v1 vs v2 (so they should be different) |
@aaron-prindle I added just the new bits and updated the commit message, however I noticed that the whole |
@filipenf ah, I see now. Yes, if you wouldn't mind adding that section as well here that would be great. Thanks for the extra analysis here! |
Example showing how to override multiple images from a helm template
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks!
Codecov Report
@@ Coverage Diff @@
## main #7874 +/- ##
==========================================
- Coverage 70.48% 66.67% -3.81%
==========================================
Files 515 593 +78
Lines 23150 28698 +5548
==========================================
+ Hits 16317 19135 +2818
- Misses 5776 8157 +2381
- Partials 1057 1406 +349
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
When using schema v3 manifests:
helm:
releases:
- setValueTemplates:
firstContainerImage.repo: '{{.IMAGE_REPO}}'
firstContainerImage.tag: '{{.IMAGE_TAG}}'
secondContainerImage.repo: '{{.IMAGE_REPO2}}'
secondContainerImage.tag: '{{.IMAGE_TAG2}}'
... |
Shows how to override multiple images in a helm template
Description
Documentation-only changes: Add a snippet showing how to override multiple images from skaffold-built artifacts. I was testing with this and thought an example in the doc would be useful. Thoughts?