Init commit
This commit is contained in:
commit
3941989c11
3 changed files with 46 additions and 0 deletions
14
.SRCINFO
Normal file
14
.SRCINFO
Normal file
|
@ -0,0 +1,14 @@
|
|||
pkgbase = clusterctl-bin
|
||||
pkgdesc = Cluster API Tool
|
||||
pkgver = 0.3.2
|
||||
pkgrel = 1
|
||||
url = https://cluster-api.sigs.k8s.io/
|
||||
arch = x86_64
|
||||
license = Apache
|
||||
optdepends = kubectl: to manage the cluster
|
||||
provides = clusterctl=$pkgver
|
||||
source = https://github.com/kubernetes-sigs/cluster-api/releases/download/v0.3.2/clusterctl-linux-amd64
|
||||
sha256sums = 6864b34dddc7c5fccf6ecf72d2f50efb4a61e75277f6883dbbece36955c92ccd
|
||||
|
||||
pkgname = clusterctl-bin
|
||||
|
18
PKGBUILD
Normal file
18
PKGBUILD
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Maintainer: Sergey Yakovlev <selfuryon@gmail.com>
|
||||
|
||||
pkgname=clusterctl-bin
|
||||
pkgdesc="Cluster API Tool"
|
||||
pkgver=0.3.2
|
||||
pkgrel=1
|
||||
arch=('x86_64')
|
||||
url="https://cluster-api.sigs.k8s.io/"
|
||||
license=('Apache')
|
||||
optdepends=('kubectl: to manage the cluster')
|
||||
provides=('clusterctl=$pkgver')
|
||||
source=("https://github.com/kubernetes-sigs/cluster-api/releases/download/v$pkgver/clusterctl-linux-amd64")
|
||||
sha256sums=('6864b34dddc7c5fccf6ecf72d2f50efb4a61e75277f6883dbbece36955c92ccd')
|
||||
|
||||
package() {
|
||||
install -Dm 755 "$srcdir/clusterctl-linux-amd64" "$pkgdir/usr/bin/clusterctl"
|
||||
}
|
||||
|
14
README.adoc
Normal file
14
README.adoc
Normal file
|
@ -0,0 +1,14 @@
|
|||
= AUR clusterctl-bin
|
||||
|
||||
The AUR clusterctl package (https://github.com/kubernetes-sigs/cluster-api)
|
||||
|
||||
== Installation
|
||||
|
||||
Manual building:
|
||||
|
||||
$ makepkg
|
||||
$ sudo pacman -U clusterctl-bin
|
||||
|
||||
Pacaur Installation:
|
||||
|
||||
$ pacaur -S clusterctl-bin
|
Loading…
Reference in a new issue