From abacbb283223d551cd8ff2ccf3c3f41bb3501efd Mon Sep 17 00:00:00 2001 From: Chris Meller Date: Wed, 27 Oct 2021 14:41:28 +0300 Subject: [PATCH] Add app manifest for the Odo CLI tool. (#2822) * Add app manifest for the Odo CLI tool. * Rename the binary to odo, rather than creating an alias. * Use github for checkver and the shorthand for the hash URL. * Specify the bin property. --- bucket/odo.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 bucket/odo.json diff --git a/bucket/odo.json b/bucket/odo.json new file mode 100644 index 0000000000..9b27bfea45 --- /dev/null +++ b/bucket/odo.json @@ -0,0 +1,26 @@ +{ + "homepage": "https://odo.dev", + "license": "Apache-2.0", + "description": "Developer-focused CLI for OpenShift and Kubernetes.", + "version": "2.4.1", + "architecture": { + "64bit": { + "url": "https://developers.redhat.com/content-gateway/rest/mirror/pub/openshift-v4/clients/odo/v2.4.1/odo-windows-amd64.exe#/odo.exe", + "hash": "fb0189476852a19188b52eb0f8dfa69bb59224ef965a5db836927c80f8813b5d" + } + }, + "bin": "odo.exe", + "checkver": { + "github": "https://github.com/openshift/odo" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://developers.redhat.com/content-gateway/rest/mirror/pub/openshift-v4/clients/odo/v$version/odo-windows-amd64.exe#/odo.exe", + "hash": { + "url": "$url.sha256" + } + } + } + } +}