forked from pool/csi-external-snapshotter
Accepting request 833705 from filesystems:ceph:octopus
CSI sidecar package OBS-URL: https://build.opensuse.org/request/show/833705 OBS-URL: https://build.opensuse.org/package/show/filesystems:ceph/csi-external-snapshotter?expand=0&rev=1
This commit is contained in:
commit
bc71da1caf
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
15
_service
Normal file
15
_service
Normal file
@ -0,0 +1,15 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<param name="url">https://github.com/kubernetes-csi/external-snapshotter</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="versionformat">2.1.1</param>
|
||||
<param name="revision">034c5458</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">gz</param>
|
||||
</service>
|
||||
<service name="go_modules" mode="disabled">
|
||||
</service>
|
||||
</services>
|
20
csi-external-snapshotter.changes
Normal file
20
csi-external-snapshotter.changes
Normal file
@ -0,0 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 25 06:21:43 UTC 2020 - Tim Serong <tserong@suse.com>
|
||||
|
||||
- Remove unnecessary BuildRequires: go1.12 >= 1.12.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 11 02:50:15 UTC 2020 - Chin-Ya Huang <chin-ya.huang@suse.com>
|
||||
|
||||
- Fix project directory for v2.1.1.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 11 01:39:21 UTC 2020 - Chin-Ya Huang <chin-ya.huang@suse.com>
|
||||
|
||||
- Update version to 2.1.1.
|
||||
Ref: https://github.com/SUSE/avant-garde/issues/1779#issuecomment-671620066
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 5 04:43:59 UTC 2020 - Chin-Ya Huang <chin-ya.huang@suse.com>
|
||||
|
||||
- Initial commit
|
59
csi-external-snapshotter.spec
Normal file
59
csi-external-snapshotter.spec
Normal file
@ -0,0 +1,59 @@
|
||||
#
|
||||
# spec file for package csi-snapshotter
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
%{go_nostrip}
|
||||
|
||||
%define project github.com/kubernetes-csi/external-snapshotter/v2
|
||||
%define package csi-snapshotter
|
||||
%define source external-snapshotter
|
||||
|
||||
Name: csi-%{source}
|
||||
Version: 2.1.1
|
||||
Release: 0
|
||||
Summary: Triggers CreateSnapshot/DeleteSnapshot against a CSI endpoint
|
||||
License: Apache-2.0
|
||||
Group: System/Management
|
||||
Url: https://%{project}
|
||||
Source: %{source}-%{version}.tar.gz
|
||||
Source1: vendor.tar.gz
|
||||
BuildRequires: golang-packaging
|
||||
BuildRequires: golang(API) >= 1.12
|
||||
|
||||
%description
|
||||
Kubernetes CSI external-snapshotter sidecar watches Kubernetes VolumeSnapshotContent CRD objects and triggers CreateSnapshot/DeleteSnapshot against a CSI endpoint.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{source}-%{version}
|
||||
%setup -q -T -D -a 1 -n %{source}-%{version}
|
||||
|
||||
%build
|
||||
%goprep %{project}
|
||||
|
||||
export CGO_ENABLED=0
|
||||
|
||||
%gobuild -a -mod=vendor -ldflags="-X main.version=%{version}" cmd/%{package}
|
||||
|
||||
%install
|
||||
%goinstall
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_bindir}/%{package}
|
||||
|
||||
%changelog
|
||||
|
3
external-snapshotter-2.1.1.tar.gz
Normal file
3
external-snapshotter-2.1.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cd650d0186aa9007ade1ecfb0c3d7de9c6ec4643cea0cab16d672fb45067968d
|
||||
size 5884571
|
3
vendor.tar.gz
Normal file
3
vendor.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ae1756deb308422ec5fad761116ab93265988a244848bb4469d0f02e8b63db3c
|
||||
size 5525448
|
Loading…
Reference in New Issue
Block a user