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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -154,12 +154,12 @@ When shutting down the docker compose, you might want to clean-up the SQLite db
154
154
155
155
### Testing architecture
156
156
157
-
The following diagram illustrate testing strategy for the several components in Model Registry project:
157
+
The following diagram illustrates testing strategy for the several components in Model Registry project:
158
158
159
159

160
160
161
161
Go layers components are tested with Unit Tests written in Go, as well as Integration Tests leveraging Testcontainers.
162
-
This allows to verify the expected "Core layer" of logical data mapping developed implemented in Go, matches technical expectations.
162
+
This allows to verify the expected "Core layer" of logical data mapping developed and implemented in Go, matches technical expectations.
163
163
164
164
Python client is also tested with Unit Tests and Integration Tests written in Python.
165
165
@@ -175,13 +175,13 @@ To delete something, simply update its status.
175
175
## Tips
176
176
### Pull image rate limiting
177
177
178
-
Ocassionally you may encounter an 'ImagePullBackOff' error when deploying the Model Registry manifests. See example below for the `model-registry-db` container.
178
+
Occasionally you may encounter an 'ImagePullBackOff' error when deploying the Model Registry manifests. See example below for the `model-registry-db` container.
179
179
180
180
```
181
181
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
182
182
```
183
183
184
-
This error is triggered by the rate limits from docker.io; in this example specifically about the image `mysql:8.3.0` (the expanded reference is `docker.io/library/mysql:8.3.0`). To mitigate against this error you could [authenticate using image pull secrets](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/) for _local development_; or replace the image used with alternative mirrored images, for instance with the following example:
184
+
This error is triggered by the rate limits from docker.io; in this example specifically about the image `mysql:8.3.0` (the expanded reference is `docker.io/library/mysql:8.3.0`). To mitigate this error you could [authenticate using image pull secrets](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/) for _local development_; or replace the image used with alternative mirrored images, for instance with the following example:
0 commit comments