forked from kubeflow/model-registry
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from tonyxrmdavidson/addOCIReadme
This commit adds a README.md for openshift-ci usage
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Model Registry Deployment and Deployment Test | ||
|
||
This deployment of model-registry is deployed via Opendatahub and used the ODH nightly images deployed to an openshfit cluster. | ||
|
||
The script will do the following: | ||
* Create a catalogue source pointing to the latest successful nightly ODH image. | ||
* Deploy the opendatahub operator using the catalogue source. | ||
* Deploy a Data Science Cluster. | ||
* Test the model-registry-operator-contoller-manager pods are running. | ||
* Clone the model-registry-operator repository. | ||
* Deploy model-registry using config/samples/mysql configuration files. | ||
* Test the model-registry-db mysql database pod is running | ||
* Test the modelregistry-sample pods are running | ||
|
||
## Pre-requisites: | ||
|
||
You will need to have an openshift cluster deployed and be oc logged into you cluster as admin. | ||
|
||
## Runing the script: | ||
|
||
From the root of the repository | ||
``` | ||
./openshift-ci/scripts/oc-model-registry-deploy.sh | ||
``` | ||
|
||
## Runing the openshift-ci | ||
|
||
You can start the openshift-ci job to test changes in your Pull Request. To do so put the following command into a comment in your Pull Request | ||
``` | ||
/test e2e-odh-mro-optional | ||
``` | ||
|
||
Previous jobs can be seen [here](https://prow.ci.openshift.org/job-history/gs/test-platform-results/pr-logs/directory/rehearse-49999-pull-ci-opendatahub-io-model-registry-main-e2e-odh-mro-optional) | ||
|