Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding a Known Issues Section to README.md File #109

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,15 @@ End-to-end testing is developed with Robot Framework; this higher-lever layer of
- demonstrate *User Stories* from high level perspective
- demonstrate coherent logical data mapping by performing the same high level capabilities, using REST API flow Vs Python client flow,
directly checking the end results in the backend gRPC MLMD server.

## Known Issues
### Model-Registry-db mysql:8.3.0 rate limiting

Ocassionally you may encounter an 'ImagePullBackOff' error within the model-registry-db container. See example below.

```
Failed to pull image “mysql:8.3.0”: rpc error: code = Unknown desc = fetching target platform image selected from image index: reading manifest sha256:f9097d95a4ba5451fff79f4110ea6d750ac17ca08840f1190a73320b84ca4c62 in docker.io/library/mysql: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit
```

This error occurs when using the default mysql:8.3.0. You can instead try to pull the image from another registry by updating it on [manifests/kustomize/overlays/db/model-registry-db-deployment.yaml](./manifests/kustomize/overlays/db/model-registry-db-deployment.yaml):
spec.template.spec.containers.image: public.ecr.aws/docker/library/mysql:8.3.0
Loading