From 227a13033fcef8948d8ab694fb15001a94d2198d Mon Sep 17 00:00:00 2001 From: Michael Ryan Peter Date: Fri, 23 Jun 2023 15:21:12 -0400 Subject: [PATCH] Fix output examples Signed-off-by: Michael Ryan Peter --- README.md | 78 +++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 59 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 413e27e1..132aea1c 100644 --- a/README.md +++ b/README.md @@ -23,25 +23,6 @@ Catalogd is a Kubernetes extension that unpacks [file-based catalog (FBC)](https ref: quay.io/operatorhubio/catalog:latest EOF ``` - - *Example output* - ```sh - https://github.com/operator-framework/catalogd/releases/download/v0.3.0/catalogd.yaml - namespace/catalogd-system created - customresourcedefinition.apiextensions.k8s.io/bundlemetadata.catalogd.operatorframework.io created - customresourcedefinition.apiextensions.k8s.io/catalogs.catalogd.operatorframework.io created - customresourcedefinition.apiextensions.k8s.io/packages.catalogd.operatorframework.io created - serviceaccount/catalogd-controller-manager created - role.rbac.authorization.k8s.io/catalogd-leader-election-role created - clusterrole.rbac.authorization.k8s.io/catalogd-manager-role created - clusterrole.rbac.authorization.k8s.io/catalogd-metrics-reader created - clusterrole.rbac.authorization.k8s.io/catalogd-proxy-role created - rolebinding.rbac.authorization.k8s.io/catalogd-leader-election-rolebinding created - clusterrolebinding.rbac.authorization.k8s.io/catalogd-manager-rolebinding created - clusterrolebinding.rbac.authorization.k8s.io/catalogd-proxy-rolebinding created - service/catalogd-controller-manager-metrics-service created - deployment.apps/catalogd-controller-manager created - ``` 1. Verify the `Catalog` object was created successfully by running the following command: @@ -114,11 +95,70 @@ Catalogd is a Kubernetes extension that unpacks [file-based catalog (FBC)](https $ kubectl get packages ``` + *Example output* + ```sh + NAME AGE + operatorhubio-ack-acm-controller 69s + operatorhubio-ack-apigatewayv2-controller 69s + operatorhubio-ack-applicationautoscaling-controller 69s + operatorhubio-ack-cloudtrail-controller 69s + operatorhubio-ack-dynamodb-controller 69s + operatorhubio-ack-ec2-controller 69s + operatorhubio-ack-ecr-controller 69s + operatorhubio-ack-eks-controller 69s + operatorhubio-ack-elasticache-controller 69s + operatorhubio-ack-emrcontainers-controller 69s + operatorhubio-ack-eventbridge-controller 69s + operatorhubio-ack-iam-controller 69s + operatorhubio-ack-kinesis-controller 69s + operatorhubio-ack-kms-controller 69s + operatorhubio-ack-lambda-controller 69s + operatorhubio-ack-memorydb-controller 69s + operatorhubio-ack-mq-controller 69s + ... + ``` 1. Run the following command to get a list of bundles: `*` ```sh $ kubectl get bundlemetadata ``` + + *Example output* + ```sh + NAME AGE + operatorhubio-ack-acm-controller.v0.0.1 2m15s + operatorhubio-ack-acm-controller.v0.0.2 2m15s + operatorhubio-ack-acm-controller.v0.0.4 2m15s + operatorhubio-ack-acm-controller.v0.0.5 2m15s + operatorhubio-ack-acm-controller.v0.0.6 2m15s + operatorhubio-ack-acm-controller.v0.0.7 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.10 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.11 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.12 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.13 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.14 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.15 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.16 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.17 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.18 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.19 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.20 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.21 2m15s + operatorhubio-ack-apigatewayv2-controller.v0.0.22 2m14s + operatorhubio-ack-apigatewayv2-controller.v0.0.9 2m14s + operatorhubio-ack-apigatewayv2-controller.v0.1.0 2m14s + operatorhubio-ack-apigatewayv2-controller.v0.1.1 2m14s + operatorhubio-ack-apigatewayv2-controller.v0.1.2 2m14s + operatorhubio-ack-apigatewayv2-controller.v0.1.3 2m14s + operatorhubio-ack-apigatewayv2-controller.v0.1.4 2m14s + operatorhubio-ack-apigatewayv2-controller.v0.1.5 2m14s + operatorhubio-ack-apigatewayv2-controller.v0.1.6 2m14s + operatorhubio-ack-apigatewayv2-controller.v1.0.0 2m14s + operatorhubio-ack-apigatewayv2-controller.v1.0.2 2m14s + operatorhubio-ack-apigatewayv2-controller.v1.0.3 2m14s + operatorhubio-ack-apigatewayv2-controller.v1.0.4 2m14s + ... + ``` ## Contributing Thanks for your interest in contributing to `catalogd`!