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
+31-8Lines changed: 31 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,19 +66,42 @@ Tracks the commits in a [git](http://git-scm.com/) repository.
66
66
* `fetch_tags`: *Optional.* If `true` the flag `--tags` will be used to fetch
67
67
all tags in the repository. If `false` no tags will be fetched.
68
68
69
-
* `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.
70
-
Example:
71
-
72
-
```
69
+
* `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.
70
+
* http(s) credentials:
71
+
* `host` : The host to connect too. Note that `host` is specified with no protocol extensions.
72
+
* `username` : Username for HTTP(S) auth when pulling submodule.
73
+
* `password` : Password for HTTP(S) auth when pulling submodule.
74
+
* ssh credentials:
75
+
* `url` : Submodule url, as specified in the `.gitmodule` file. Support full or relative ssh url.
76
+
* `private_key` : Private key for SSH auth when pulling submodule.
77
+
* `private_key_passphrase` : *Optional.* To unlock `private_key` if it is protected by a passphrase.
0 commit comments