feat: add ci config #3
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "feature/automate-all-the-things"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
Resolves #2
@vlasov-y Do you have an idea why this fails? As far as I know redis and postgres are external charts so they should not have any effect?
@konrad Hi! That is an expected behavior. When you package helm chart you always package it with all dependencies. We depend on PostgreSQL and Redis but do not push them to the repository (they have been added to .gitignore).
Solution
Run
helm dependency update
beforehelm package .
command and the issue will disappear.I have updated the README.md including these details
That seems to have been it - thanks!