From d2b69c5e8edc1bdab0ff4fb66b5ea80794e506d3 Mon Sep 17 00:00:00 2001 From: Mohamed Mahmoud Date: Wed, 25 Sep 2024 13:31:08 -0400 Subject: [PATCH] update name and description for downstream Signed-off-by: Mohamed Mahmoud --- hack/update_bundle.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hack/update_bundle.sh b/hack/update_bundle.sh index d4da35057..ac201a78d 100755 --- a/hack/update_bundle.sh +++ b/hack/update_bundle.sh @@ -9,6 +9,8 @@ export CSV_FILE=/manifests/bpfman-operator.clusterserviceversion.yaml sed -i -e "s|quay.io/bpfman/bpfman-operator:v.*|\"${BPFMAN_OPERATOR_IMAGE_PULLSPEC}\"|g" \ -e "s|quay.io/bpfman/bpfman-operator:latest*|\"${BPFMAN_OPERATOR_IMAGE_PULLSPEC}\"|g" \ + -e "s|displayName: Bpfman Operator|displayName: eBPF Manager Operator|g" \ + -e "s|The bpfman Operator|The eBPF manager Operator|g" \ "${CSV_FILE}" export AMD64_BUILT=$(skopeo inspect --raw docker://${BPFMAN_OPERATOR_IMAGE_PULLSPEC} | jq -e '.manifests[] | select(.platform.architecture=="amd64")') @@ -63,6 +65,7 @@ bpfman_operator_csv['metadata']['annotations']['features.operators.openshift.io/ bpfman_operator_csv['metadata']['annotations']['features.operators.openshift.io/token-auth-gcp'] = 'false' bpfman_operator_csv['metadata']['annotations']['repository'] = 'https://github.com/bpfman/bpfman-operator' bpfman_operator_csv['metadata']['annotations']['containerImage'] = os.getenv('BPFMAN_OPERATOR_IMAGE_PULLSPEC', '') +bpfman_operator_csv['spec']['displayName'] = 'eBPF Manager Operator' dump_manifest(os.getenv('CSV_FILE'), bpfman_operator_csv) CSV_UPDATE