Skip to content

Commit fd0cddb

Browse files
Rename application to KSERVE UI in README (#193)
Updated README to reflect application name change and improve clarity. Signed-off-by: Julius von Kohout <45896133+juliusvonkohout@users.noreply.github.com>
1 parent ceb43b5 commit fd0cddb

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Models web application
1+
# KSERVE UI
22

33
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.
44

@@ -10,7 +10,7 @@ This web application is responsible for allowing users to manage KServe inferenc
1010
The create form also supports multi-document YAML for ordered creation of
1111
supported KServe resources. Multi-document creation currently accepts
1212
`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
1414
document and any resources already created, but it does not roll back earlier
1515
successful creations.
1616

@@ -45,7 +45,7 @@ Alternatively you can access the application via `kubectl port-forward`. In that
4545

4646
1. Not perform any authorization checks, since there is no logged in user
4747
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
4949

5050
You can apply the mentioned configurations by doing the following commands:
5151

@@ -68,12 +68,12 @@ kustomize build manifests/kustomize/base | kubectl apply -f -
6868

6969
## Configuration
7070

71-
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.
7272
| Environment variable | Default value | Description |
7373
| - | - | - |
7474
| 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 |
7575
| 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 |
7777
| CSRF_SAMESITE | Strict| Controls the [SameSite value](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#SameSite) of the CSRF cookie |
7878
| USERID_HEADER | kubeflow-userid | Header in each request that will contain the username of the logged in user |
7979
| USERID_PREFIX | "" | Prefix to remove from the `USERID_HEADER` value to extract the logged in user name |
@@ -209,7 +209,7 @@ npm run build
209209
cd dist/kubeflow
210210
npm link
211211

212-
# run the app frontend
212+
# run the application frontend
213213
cd $KSERVE_MODELS_WEB_APPLICATION_REPOSITORY/frontend
214214
npm i
215215
npm link kubeflow

0 commit comments

Comments
 (0)