diff --git a/examples/operator-quickstart/01-Install.ipynb b/examples/operator-quickstart/01-Install.ipynb index c9dd091bf53..7186f49a2f1 100644 --- a/examples/operator-quickstart/01-Install.ipynb +++ b/examples/operator-quickstart/01-Install.ipynb @@ -15,7 +15,7 @@ "metadata": {}, "source": [ "## Prerequisites\n", - "* [Kind](https://kind.sigs.k8s.io/) cluster and a Docker runtime container\n", + "* Kubernetes Cluster - e.g. [Kind](https://kind.sigs.k8s.io/) or OpenShift\n", "* [kubectl](https://kubernetes.io/docs/tasks/tools/#kubectl) Kubernetes CLI tool." ] }, @@ -24,6 +24,7 @@ "metadata": {}, "source": [ "## Install Prerequisites\n", + "\n", "The following commands install and configure all the prerequisites on MacOS environment. You can find the\n", "equivalent instructions on the offical documentation pages:\n", "* Install Kind and Container runtime (e.g. [Colima](https://github.com/abiosoft/colima)).\n", @@ -221,7 +222,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Verify that the DB includes the expected tables with pre-populated data." + "Verify that the DB includes the expected tables." ] }, { diff --git a/examples/operator-quickstart/02-Client-Openshift.ipynb b/examples/operator-quickstart/02-Client-Openshift.ipynb index 3d935997fe2..32ec59e1f38 100644 --- a/examples/operator-quickstart/02-Client-Openshift.ipynb +++ b/examples/operator-quickstart/02-Client-Openshift.ipynb @@ -51,7 +51,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Monitoring the log of the `Deployment`." + "Monitoring the log of the `Deployment` and checking DB for populated data." ] }, { @@ -101,20 +101,7 @@ "metadata": {}, "outputs": [], "source": [ - "!kubectl exec deploy/client -c client -- python3 test_workflow.py\n", - "!kubectl exec deploy/postgres -- psql -h localhost -U feast feast -c 'select count(*) from sample_driver_hourly_stats'" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note If you see the following error, it is likely due to the [issue #4392](https://github.com/feast-dev/feast/issues/4392):\n", - "Remote registry client does not map application errors:\n", - "\n", - "```\n", - "Feature view driver_hourly_stats_fresh does not exist in project sample\n", - "```" + "!kubectl exec deploy/client -c client -- python3 test_workflow.py" ] } ], diff --git a/examples/operator-quickstart/03-Uninstall.ipynb b/examples/operator-quickstart/03-Uninstall.ipynb index 31c45c060a1..3b4abf209ad 100644 --- a/examples/operator-quickstart/03-Uninstall.ipynb +++ b/examples/operator-quickstart/03-Uninstall.ipynb @@ -13,7 +13,7 @@ "metadata": {}, "outputs": [], "source": [ - "!kubectl delete -f client-openshift.yaml\n", + "!kubectl delete -f client.yaml\n", "!kubectl delete -f feast.yaml\n", "!kubectl delete -f postgres.yaml\n", "!make -C ../../infra/feast-operator undeploy"