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
description: Deploy models to KServe InferenceService from git repository.
4
+
---
5
+
6
+
# Deploy InferenceService with a saved model from a URI
7
+
8
+
Git download supports https protocol only and no branches.
9
+
10
+
To use it, specify the model url in the following format: `https://github.com/kserve/kserve.git`
11
+
12
+
Specify username via either the environment variables `GIT_USERNAME`, or directly in the URL: `https://username@github.com/kserve/kserve.git`. When both present, username from URL takes precedence.
13
+
14
+
Specify password via the `GIT_PASSWORD` environment variable. Note that password via URL will be ignored.
15
+
16
+
17
+
# Password considerations
18
+
19
+
You should keep the password in a k8s `Secret`, e.g.:
0 commit comments