forked from argoproj-labs/argocd-image-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into release-image
- Loading branch information
Showing
15 changed files
with
674 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -144,6 +144,22 @@ kubectl -n argocd-image-updater create secret generic git-creds \ | |
--from-file=sshPrivateKey=~/.ssh/id_rsa | ||
``` | ||
|
||
### <a name="method-git-repository"></a>Specifying a repository when using a Helm repository in repoURL | ||
|
||
By default, Argo CD Image Updater will use the value found in the Application | ||
spec at `.spec.source.repoURL` as Git repository to checkout. But when using | ||
a Helm repository as `.spec.source.repoURL` GIT will simply fail. To manually | ||
specify the repository to push the changes, specify the | ||
annotation `argocd-image-updater.argoproj.io/git-repository` on the Application | ||
manifest. | ||
|
||
The value of this annotation will define the Git repository to use, for example the | ||
following would use a GitHub's repository: | ||
|
||
```yaml | ||
argocd-image-updater.argoproj.io/git-repository: [email protected]:example/example.git | ||
``` | ||
|
||
### <a name="method-git-branch"></a>Specifying a branch to commit to | ||
|
||
By default, Argo CD Image Updater will use the value found in the Application | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.