From f9e21c78fa2f48027f0eed12c1d4ecc0e2c03d5a Mon Sep 17 00:00:00 2001 From: Jordan Keister Date: Wed, 29 Nov 2023 10:08:29 -0600 Subject: [PATCH] review updates Signed-off-by: Jordan Keister --- README.md | 2 +- hack/scripts/demo-script.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f78a1d7..76b2535 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Catalogd is a Kubernetes extension that unpacks [file-based catalog (FBC)](https Catalogd helps customers discover installable content by hosting catalog metadata for Kubernetes extensions, such as Operators and controllers. For more information on the Operator Lifecycle Manager (OLM) v1 suite of microservices, see the [documentation](https://github.com/operator-framework/operator-controller/tree/main/docs) for the Operator Controller. ## Quickstart DEMO -[![asciicast](https://asciinema.org/a/623845.svg)](https://asciinema.org/a/623845) +[![asciicast](https://asciinema.org/a/623959.svg)](https://asciinema.org/a/623959) ## Quickstart Steps **NOTE:** Procedure steps marked with an asterisk (`*`) are likely to change with future API updates. diff --git a/hack/scripts/demo-script.sh b/hack/scripts/demo-script.sh index 416c179..95c79bb 100755 --- a/hack/scripts/demo-script.sh +++ b/hack/scripts/demo-script.sh @@ -17,7 +17,7 @@ kubectl apply -f config/samples/core_v1alpha1_catalog.yaml # shows catalog-sample kubectl get catalog -A # waiting for catalog to report ready status -time kubectl wait --for=condition=Unpacked catalog/operatorhubio --timeout=1h +time kubectl wait --for=condition=Unpacked catalog/operatorhubio --timeout=1m # port forward the catalogd-catalogserver service to interact with the HTTP server serving catalog contents (kubectl -n catalogd-system port-forward svc/catalogd-catalogserver 8080:80)& @@ -27,5 +27,5 @@ curl http://localhost:8080/catalogs/operatorhubio/all.json | jq -s '.[] | select # check what channels are included in the wavefront package curl http://localhost:8080/catalogs/operatorhubio/all.json | jq -s '.[] | select(.schema == "olm.channel") | select(.package == "wavefront") | .name' # check what bundles are included in the wavefront package -curl http://localhost:8080/catalogs/operatorhubio/all.json | jq -s '.[] | select(.schema == "olm.bundle") | select(.package == "ack-acm-controller") | .name' +curl http://localhost:8080/catalogs/operatorhubio/all.json | jq -s '.[] | select(.schema == "olm.bundle") | select(.package == "wavefront") | .name'