forked from pool/helmfile
Accepting request 822748 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/822748 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/helmfile?expand=0&rev=2
This commit is contained in:
commit
a87f73aacc
2
_service
2
_service
@ -5,7 +5,7 @@
|
|||||||
<param name="exclude">.git</param>
|
<param name="exclude">.git</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
<param name="revision">v0.121.1</param>
|
<param name="revision">v0.125.0</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="disabled">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/roboll/helmfile.git</param>
|
<param name="url">https://github.com/roboll/helmfile.git</param>
|
||||||
<param name="changesrevision">4bbb1699a3d35b0af68630f7df7312dd63df6c88</param></service></servicedata>
|
<param name="changesrevision">ee8ea507a6c33eb0ce288059856c37fdee88f4d0</param></service></servicedata>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8eafe17b3d08b0807b77f427d7161121e8f6286683763fdbc011b6d29894809f
|
|
||||||
size 197155
|
|
3
helmfile-0.125.0.tar.gz
Normal file
3
helmfile-0.125.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:29357082f20b125059d36185d19ec5a38f44449fc62be8716d3e50391ec4b40e
|
||||||
|
size 198424
|
@ -1,3 +1,29 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 24 12:50:14 UTC 2020 - Manfred Hollstein <manfred.h@gmx.net>
|
||||||
|
|
||||||
|
- v0.125.0: Add pre/postuninstall hooks (#1375)
|
||||||
|
* ee8ea50 (HEAD, tag: v0.125.0, origin/master, origin/HEAD, master)
|
||||||
|
Add pre/postuninstall hooks (#1375)
|
||||||
|
* b5830a3 Add ability to use go-getter for fetching remote manifests
|
||||||
|
directory as chart (#1374)
|
||||||
|
|
||||||
|
- v0.124.0: Add disableValidation and disableOpenAPIValidation per
|
||||||
|
release (#1373)
|
||||||
|
* 4fde6e1 (HEAD, tag: v0.124.0, master) Add disableValidation and
|
||||||
|
disableOpenAPIValidation per release (#1373)
|
||||||
|
* a5e790c Add Jenkins OSS to the list of users (#1372)
|
||||||
|
* 1e956ae Fix list failure when patches are used (#1371)
|
||||||
|
|
||||||
|
- v0.123.0: Bump variantdev/vals for better Variant KV v2 support
|
||||||
|
(#1367)
|
||||||
|
* 1671b8b (HEAD, tag: v0.123.0, origin/master, origin/HEAD, master)
|
||||||
|
Bump variantdev/vals for better Variant KV v2 support (#1367)
|
||||||
|
|
||||||
|
- v0.122.2: Bump chartify to 0.3.11 (#1366)
|
||||||
|
* 608ba19 (HEAD, tag: v0.122.2, origin/master, origin/HEAD, master)
|
||||||
|
Bump chartify to 0.3.11 (#1366)
|
||||||
|
* daf7d3b fix the issue in the documentation (#1364)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 17 12:29:09 UTC 2020 - Manfred Hollstein <manfred.h@gmx.net>
|
Fri Jul 17 12:29:09 UTC 2020 - Manfred Hollstein <manfred.h@gmx.net>
|
||||||
|
|
||||||
|
@ -16,9 +16,9 @@
|
|||||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
%define git_commit 4bbb1699a3d35b0af68630f7df7312dd63df6c88
|
%define git_commit ee8ea507a6c33eb0ce288059856c37fdee88f4d0
|
||||||
Name: helmfile
|
Name: helmfile
|
||||||
Version: 0.121.1
|
Version: 0.125.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Deploy Kubernetes Helm Charts
|
Summary: Deploy Kubernetes Helm Charts
|
||||||
License: MIT
|
License: MIT
|
||||||
@ -50,7 +50,7 @@ delegates to helm - as a result, helm must be installed.
|
|||||||
go build -mod=vendor -buildmode=pie
|
go build -mod=vendor -buildmode=pie
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make TAG=%{version} install
|
make TAG=v%{version} install
|
||||||
mkdir -p %{buildroot}%{_bindir}
|
mkdir -p %{buildroot}%{_bindir}
|
||||||
install -m755 ${HOME}/go/bin/helmfile %{buildroot}/%{_bindir}/helmfile
|
install -m755 ${HOME}/go/bin/helmfile %{buildroot}/%{_bindir}/helmfile
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:c2d3bbbd37790b763679e7b51903c76eeb72b33a8c9e4dde5c14718541583ebc
|
oid sha256:f372d192b753ac42c9deddb0e0a36683983e60d21303c7326fefbccccadc9147
|
||||||
size 5595932
|
size 5610660
|
||||||
|
Loading…
Reference in New Issue
Block a user