forked from pool/csi-external-provisioner
Accepting request 833700 from filesystems:ceph:octopus
CSI sidecar package OBS-URL: https://build.opensuse.org/request/show/833700 OBS-URL: https://build.opensuse.org/package/show/filesystems:ceph/csi-external-provisioner?expand=0&rev=1
This commit is contained in:
commit
e802840017
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-provisioner</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="versionformat">1.6.0</param>
|
||||
<param name="revision">321fa5c1c</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>
|
10
csi-external-provisioner.changes
Normal file
10
csi-external-provisioner.changes
Normal file
@ -0,0 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 11 01:18:55 UTC 2020 - Chin-Ya Huang <chin-ya.huang@suse.com>
|
||||
|
||||
- Update version to 1.6.0.
|
||||
Ref: https://github.com/SUSE/avant-garde/issues/1779#issuecomment-671620066
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 5 04:37:09 UTC 2020 - Chin-Ya Huang <chin-ya.huang@suse.com>
|
||||
|
||||
- Initial commit
|
60
csi-external-provisioner.spec
Normal file
60
csi-external-provisioner.spec
Normal file
@ -0,0 +1,60 @@
|
||||
#
|
||||
# spec file for package csi-provisioner
|
||||
#
|
||||
# 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-provisioner
|
||||
%define package csi-provisioner
|
||||
%define source external-provisioner
|
||||
|
||||
Name: csi-%{source}
|
||||
Version: 1.6.0
|
||||
Release: 0
|
||||
Summary: Dynamically provisions volumes of CSI drivers
|
||||
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
|
||||
BuildRequires: go1.12 >= 1.12.0
|
||||
|
||||
%description
|
||||
Kubernetes external controller that monitors PersistentVolumeClaim objects created by user and creates/deletes volumes for them.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{source}-%{version}
|
||||
%setup -q -T -D -a 1 -n %{source}-%{version}
|
||||
|
||||
%build
|
||||
%goprep %{project}
|
||||
|
||||
export CGO_ENABLED=0
|
||||
export GOOS=linux
|
||||
|
||||
%gobuild -a -mod=vendor -ldflags="-w -s -X main.version=%{version}" cmd/%{package}
|
||||
|
||||
%install
|
||||
%goinstall
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_bindir}/%{package}
|
||||
|
||||
%changelog
|
3
external-provisioner-1.6.0.tar.gz
Normal file
3
external-provisioner-1.6.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:08b2d2ac983c540a3cf36a06f7da2749e95ae2f5513fae4ffe2939137778a45a
|
||||
size 5388919
|
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:810328049a08abc98661cd008c0be39d87ee1ddde24719ae5ef0e55a8095a735
|
||||
size 5086266
|
Loading…
Reference in New Issue
Block a user