You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-5Lines changed: 18 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -64,19 +64,32 @@ Tracks the commits in a [git](http://git-scm.com/) repository.
64
64
* `fetch_tags`: *Optional.* If `true` the flag `--tags` will be used to fetch
65
65
all tags in the repository. If `false` no tags will be fetched.
66
66
67
-
* `submodule_credentials`: *Optional.* List of credentials for HTTP(s) auth when pulling/pushing private git submodules which are not stored in the same git server as the container repository.
68
-
Example:
67
+
* `submodule_credentials`: *Optional.* List of credentials for HTTP(s) or SSH auth when pulling git submodules which are not stored in the same git server as the container repository or are protected by a different private key.
68
+
* http(s) credentials
69
+
* `host` : The host to connect too. Note that `host` is specified with no protocol extensions.
70
+
* `username` : Username for HTTP(S) auth when pulling submodule.
71
+
* `password` : Password for HTTP(S) auth when pulling submodule.
72
+
* ssh credentials
73
+
* `private_key` : Private key for SSH auth when pulling submodule.
74
+
* `private_key_passphrase` : *Optional.* To unlock `private_key` if it is protected by a passphrase.
0 commit comments