Skip to content

Commit f8dd706

Browse files
committed
Document GitHub app credentials GitHub Enterprise Base URL when creating repository.
Add CLI command to Add a private Git repository on GitHub Enterprise and update instruction. Resolves: argoproj#22389 Signed-off-by: Denis Karpelevich <[email protected]>
1 parent 9f37d43 commit f8dd706

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

docs/user-guide/private-repositories.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -113,19 +113,25 @@ Private repositories that are hosted on GitHub.com or GitHub Enterprise can be a
113113

114114
You can configure access to your Git repository hosted by GitHub.com or GitHub Enterprise using the GitHub App method by either using the CLI or the UI.
115115

116-
Using the CLI:
116+
Add a private Git repository on GitHub.com using the CLI:
117117

118118
```
119119
argocd repo add https://github.com/argoproj/argocd-example-apps.git --github-app-id 1 --github-app-installation-id 2 --github-app-private-key-path test.private-key.pem
120120
```
121121

122+
Add a private Git repository on GitHub Enterprise using the CLI:
123+
124+
```
125+
argocd repo add https://ghe.example.com/repos/repo --github-app-id 1 --github-app-installation-id 2 --github-app-private-key-path test.private-key.pem --github-app-enterprise-base-url https://ghe.example.com/api/v3
126+
```
127+
122128
Using the UI:
123129

124130
1. Navigate to `Settings/Repositories`
125131

126132
![connect repo overview](../assets/repo-add-overview.png)
127133

128-
2. Click `Connect Repo using GitHub App` button, enter the URL, App Id, Installation Id, and the app's private key.
134+
2. Click `Connect Repo using GitHub App` button, choose type: `GitHub` or `GitHub Enterprise`, enter the URL, GitHub Enterprise Base URL, App Id, Installation Id, and the app's private key.
129135

130136
![connect repo](../assets/repo-add-github-app.png)
131137

0 commit comments

Comments
 (0)