blob: 8647bf71890d48ee49afe1b4926543d2b46f8597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Contributor: Oleg Titov <oleg.titov@gmail.com>
# Maintainer: Oleg Titov <oleg.titov@gmail.com>
pkgname=k3s
pkgver=0.8.0
pkgrel=0
pkgdesc="Lightweigt Kubernetes. 5 less than k8s."
url="https://k3s.io"
arch="all"
license="Apache-2.0"
options="!check" # No test suite from upstream
depends="containerd"
makedepends="go linux-headers"
subpackages="$pkgname-doc $pkgname-openrc"
source="$pkgname-$pkgver.tar.gz::https://github.com/rancher/k3s/archive/v$pkgver.tar.gz
k3s.initd
k3s.confd
"
builddir="$srcdir/src/github.com/rancher/$pkgname"
# secfixes:
# 0.8.0-r0:
# - CVE-2019-11247
# - CVE-2019-11249
prepare() {
export GOPATH="$srcdir"
mkdir -p "$(dirname $builddir)"
mv "$srcdir"/$pkgname-$pkgver "$builddir"/
default_prepare
}
build() {
msg2 "Prepare GOPATH and GOBIN..."
export GOPATH="$srcdir"
export GOBIN="$GOPATH/bin"
msg2 "Building k3s..."
go build -o k3s
msg2 "Building kubectl..."
go build -o kubectl ./cmd/kubectl
msg2 "Building hypercube..."
go build -o hyperkube ./vendor/k8s.io/kubernetes/cmd/hyperkube
}
package() {
install -m755 -D k3s \
"$pkgdir"/usr/bin/k3s
install -m755 -D kubectl \
"$pkgdir"/usr/bin/kubectl
install -m755 -D hyperkube \
"$pkgdir"/usr/bin/hypercube
install -m644 -D -t "$pkgdir"/usr/share/doc/$pkgname README.md
install -m755 -D "$srcdir"/k3s.initd "$pkgdir"/etc/init.d/k3s
install -m644 -D "$srcdir"/k3s.confd "$pkgdir"/etc/conf.d/k3s
}
sha512sums="15ad80c965a49bb4afe1033602119a94a122f2a3d33e737b18d06ecf6ca0825ca812316b16cce0a1a4c35c63713bd7936983ccd0578557524d38de8bdf2d40c6 k3s-0.8.0.tar.gz
9501422f1bf5375555116cbeedb32de32109153396699bde1300ce01156c3e57fe3fb14a57f7de1dce47c955e5e6d61de7fea181a07b407f5b452006bc58991c k3s.initd
dda2fc70e884ef439fece8f850d798f98d07cd431f0b8b79183f192b35f68fc7c633d3c790aae7b86ca57331212a7bb2f783131b752a4e1e71ef918469e6b944 k3s.confd"
|