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
Updated README to reflect application name change and improve clarity.
Signed-off-by: Julius von Kohout <45896133+juliusvonkohout@users.noreply.github.com>
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Models web application
1
+
# KSERVE UI
2
2
3
3
This web application is responsible for allowing users to manage KServe inference resources in a Kubeflow cluster. It provides a user-friendly way to handle the lifecycle of both `InferenceService` and `InferenceGraph` custom resources.
4
4
@@ -10,7 +10,7 @@ This web application is responsible for allowing users to manage KServe inferenc
10
10
The create form also supports multi-document YAML for ordered creation of
11
11
supported KServe resources. Multi-document creation currently accepts
12
12
`InferenceService`, `InferenceGraph`, and `TrainedModel` resources. Resources are
13
-
created in document order; if one creation fails, the app reports the failed
13
+
created in document order; if one creation fails, the application reports the failed
14
14
document and any resources already created, but it does not roll back earlier
15
15
successful creations.
16
16
@@ -45,7 +45,7 @@ Alternatively you can access the application via `kubectl port-forward`. In that
45
45
46
46
1. Not perform any authorization checks, since there is no logged in user
47
47
2. Work under the `/` prefix
48
-
3. Disable Secure cookies, since the app will be exposed under plain http
48
+
3. Disable Secure cookies, since the application will be exposed under plain http
49
49
50
50
You can apply the mentioned configurations by doing the following commands:
The following is a list of environment variables that can be set for any web app that is using this base app.
71
+
The following is a list of environment variables that can be set for any web application that is using this base application.
72
72
| Environment variable | Default value | Description |
73
73
| - | - | - |
74
74
| APP_PREFIX | /models | Controls the application's prefix, by setting the [base-url](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base) element |
75
75
| APP_DISABLE_AUTH | False | Controls whether the application should use SubjectAccessReviews to ensure the user is authorized to perform an action |
76
-
| APP_SECURE_COOKIES | True | Controls whether the app should use [Secure](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#Secure) CSRF cookies. By default the application expects to be exposed with https |
76
+
| APP_SECURE_COOKIES | True | Controls whether the application should use [Secure](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#Secure) CSRF cookies. By default the application expects to be exposed with https |
77
77
| CSRF_SAMESITE | Strict| Controls the [SameSite value](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#SameSite) of the CSRF cookie |
78
78
| USERID_HEADER | kubeflow-userid | Header in each request that will contain the username of the logged in user |
79
79
| USERID_PREFIX | "" | Prefix to remove from the `USERID_HEADER` value to extract the logged in user name |
0 commit comments