Package Details: kubectl-crossplane-bin 1.8.0-0

Git Clone URL: https://aur.archlinux.org/kubectl-crossplane-bin.git (read-only, click to copy)
Package Base: kubectl-crossplane-bin
Description: Crossplane kubectl plugin
Upstream URL: https://releases.crossplane.io
Keywords: crossplane kubectl
Licenses: Apache
Submitter: tekila
Maintainer: tekila
Last Packager: tekila
Votes: 1
Popularity: 0.000001
First Submitted: 2022-05-05 06:40 (UTC)
Last Updated: 2022-05-25 06:16 (UTC)

Required by (0)

Sources (1)

Latest Comments

tekila commented on 2022-05-25 06:17 (UTC)

Thanks, @rkevin. The problem is now fixed and the package has been updated.

rkevin commented on 2022-05-24 22:35 (UTC)

Heyo! This package downloads the crossplane binary, which is actually the k8s controller and not the kubectl plugin. The plugin is called crank in the downloads, although it should be installed as kubectl-crossplane. I had to make the following change to download the right thing:

diff --git a/PKGBUILD b/PKGBUILD
index 3139dc5..44166e7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,7 +9,7 @@ url="https://releases.crossplane.io"
 depends=('kubectl')
 license=('APACHE')
 arch=('x86_64')
-source=("$_binname::$url/stable/v$pkgver/bin/linux_amd64/crossplane")
+source=("$_binname::$url/stable/v$pkgver/bin/linux_amd64/crank")
 sha512sums=('a146104e5bb5e4279d89d798da277e886e4782f02b177a41661491f0fc0573fa5fc7e98ed3a5ac97e298a14d3a7ffcce52060daa8da61131adc1a1f92ead0275')

 package() {

Also, v1.8.0 is out, so it would be nice to see an update. Thanks for maintaining this!