From e674428a1b1a35794db523aefbaadbd416f0e982 Mon Sep 17 00:00:00 2001 From: Theo Chatzimichos Date: Thu, 4 Apr 2024 10:47:21 +0300 Subject: [PATCH 1/2] fix(package/crossplane.yaml): fix the URL in the pkg metadata The marketplace UI is creating a wrong URL when the "https://" part is present in the pkg metadata, it generates the following invalid URL: ``` https://https//github.com/ORG/PROVIDER ``` Removing the "https://" from the pkg metadata fixes the issue, as confirmed by looking at the pkg metadata of other providers. Signed-off-by: Theo Chatzimichos --- package/crossplane.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/crossplane.yaml b/package/crossplane.yaml index 725375e..8831b31 100644 --- a/package/crossplane.yaml +++ b/package/crossplane.yaml @@ -4,7 +4,7 @@ metadata: name: provider-spotify annotations: meta.crossplane.io/maintainer: "Theo Chatzimichos " - meta.crossplane.io/source: https://github.com/crossplane-contrib/provider-spotify + meta.crossplane.io/source: github.com/crossplane-contrib/provider-spotify meta.crossplane.io/license: Apache-2.0 meta.crossplane.io/description: A Crossplane provider for managing Spotify playlists in Kubernetes. meta.crossplane.io/readme: | From bed3dba3f5258c9b3a36be05e6b6b631da1f85c9 Mon Sep 17 00:00:00 2001 From: Theo Chatzimichos Date: Thu, 4 Apr 2024 10:55:48 +0300 Subject: [PATCH 2/2] feat: version bump v0.2.2 Signed-off-by: Theo Chatzimichos --- README.md | 4 ++-- examples/install.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a2a5d71..2c3693c 100644 --- a/README.md +++ b/README.md @@ -71,12 +71,12 @@ using either of the following methods: - Using [up](https://docs.upbound.io/reference/cli/): ```bash - up ctp provider install crossplane-contrib/provider-spotify:v0.2.0 + up ctp provider install crossplane-contrib/provider-spotify:v0.2.2 ``` - Using [crossplane](https://docs.crossplane.io/latest/cli/): ```bash - crossplane xpkg install provider crossplane-contrib/provider-spotify:v0.2.0 + crossplane xpkg install provider crossplane-contrib/provider-spotify:v0.2.2 ``` - Using declarative installation: diff --git a/examples/install.yaml b/examples/install.yaml index 880ea71..e02874d 100644 --- a/examples/install.yaml +++ b/examples/install.yaml @@ -3,4 +3,4 @@ kind: Provider metadata: name: provider-spotify spec: - package: crossplane-contrib/provider-spotify:v0.2.0 + package: crossplane-contrib/provider-spotify:v0.2.2