Compare commits
10 Commits
e5a591e0ac
...
94404638b3
| Author | SHA1 | Date | |
|---|---|---|---|
|
94404638b3
|
|||
|
|
c697aa0555 | ||
|
|
8864bd1b15 | ||
|
|
bdf4db5c41 | ||
|
|
3047607e8c | ||
|
|
9654f8e147 | ||
|
|
c1064ce459 | ||
|
|
46973219bc | ||
|
|
ef3af4f16a | ||
|
|
ff05f98236 |
8
.SRCINFO
8
.SRCINFO
@@ -1,14 +1,14 @@
|
|||||||
pkgbase = velero-bin
|
pkgbase = velero-bin
|
||||||
pkgdesc = Backup client for Kubernetes
|
pkgdesc = Backup client for Kubernetes
|
||||||
pkgver = 1.12.2
|
pkgver = 1.16.1
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://github.com/vmware-tanzu/velero
|
url = https://github.com/vmware-tanzu/velero
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
license = Apache
|
license = Apache-2.0
|
||||||
depends = kubectl
|
depends = kubectl
|
||||||
provides = velero
|
provides = velero
|
||||||
conflicts = velero
|
conflicts = velero
|
||||||
source = https://github.com/vmware-tanzu/velero/releases/download/v1.12.2/velero-v1.12.2-linux-amd64.tar.gz
|
source = https://github.com/vmware-tanzu/velero/releases/download/v1.16.1/velero-v1.16.1-linux-amd64.tar.gz
|
||||||
sha256sums = f33559f4fb7d6bbed422be45eeebc5ce7c1e8e78f6d8486292247bc661c3eb5e
|
sha256sums = 0a576053cd051268aee40a3ebc9fbf8f72c4fa6a03792100d9009c50367e795f
|
||||||
|
|
||||||
pkgname = velero-bin
|
pkgname = velero-bin
|
||||||
|
|||||||
13
.gitea/workflows/build.yml
Normal file
13
.gitea/workflows/build.yml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
name: Build package
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-package:
|
||||||
|
runs-on: pkgbuilder
|
||||||
|
env:
|
||||||
|
steps:
|
||||||
|
- name: Build and push package
|
||||||
|
uses: https://gitea.konchin.com/action/archbuild@main
|
||||||
|
with:
|
||||||
|
minio-accesskey: ${{ secrets.MINIO_ACCESSKEY }}
|
||||||
|
minio-secretkey: ${{ secrets.MINIO_SECRETKEY }}
|
||||||
6
PKGBUILD
6
PKGBUILD
@@ -1,7 +1,7 @@
|
|||||||
# Maintainer: Lukas Grossar <lukas.grossar@gmail.com>
|
# Maintainer: Lukas Grossar <lukas.grossar@gmail.com>
|
||||||
|
|
||||||
pkgname=velero-bin
|
pkgname=velero-bin
|
||||||
pkgver=1.12.2
|
pkgver=1.16.1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Backup client for Kubernetes"
|
pkgdesc="Backup client for Kubernetes"
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
@@ -9,9 +9,9 @@ url="https://github.com/vmware-tanzu/velero"
|
|||||||
depends=('kubectl')
|
depends=('kubectl')
|
||||||
provides=('velero')
|
provides=('velero')
|
||||||
conflicts=('velero')
|
conflicts=('velero')
|
||||||
license=('Apache')
|
license=('Apache-2.0')
|
||||||
source=("https://github.com/vmware-tanzu/velero/releases/download/v${pkgver}/velero-v${pkgver}-linux-amd64.tar.gz")
|
source=("https://github.com/vmware-tanzu/velero/releases/download/v${pkgver}/velero-v${pkgver}-linux-amd64.tar.gz")
|
||||||
sha256sums=('f33559f4fb7d6bbed422be45eeebc5ce7c1e8e78f6d8486292247bc661c3eb5e')
|
sha256sums=('0a576053cd051268aee40a3ebc9fbf8f72c4fa6a03792100d9009c50367e795f')
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
install -Dm 755 "$srcdir/velero-v${pkgver}-linux-amd64/velero" -t "$pkgdir/usr/bin"
|
install -Dm 755 "$srcdir/velero-v${pkgver}-linux-amd64/velero" -t "$pkgdir/usr/bin"
|
||||||
|
|||||||
Reference in New Issue
Block a user