helmfile/helmfile.spec
Manfred Hollstein 7b9a10034b Accepting request 842372 from home:manfred-h:Cubic
Upgrade to upstream version 0.130:

- v0.130.3: Bump vals (#1537)
  * 563fce4 (HEAD, tag: v0.130.3, origin/master, origin/HEAD, master)
    Bump vals (#1537)
  * b287101 Update USERS.md (#1535)
- v0.130.2: Fix concurrent-map-iteration-and-write errors while running release h…
  * ab9fb2c (HEAD, tag: v0.130.2, origin/master, origin/HEAD, master)
    Fix concurrent-map-iteration-and-write errors while running
    release hooks (#1534)
  * c170b5a Minor tweaks for helmfile write-values (#1533)
  * d9286ed Fix intermittent failures while building deps on local
    chart (#1532)
  * 3018e82 Fix multiple --set in --args messed up in helmfile
    template (#1529)
  * 34acf14 Bump chartify to v0.4.3 (#1528)
  * 5d8eba9 Append --force-update for specific helm versions. (#1494)
  * b284b7b chore: add SettleMint to the USERS list (#1516)
  * b293ac1 Fix typo (#1523)
  * 8d9d635 Clarify namespace prefix in needs (#1500)

OBS-URL: https://build.opensuse.org/request/show/842372
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/helmfile?expand=0&rev=17
2020-10-18 09:00:40 +00:00

63 lines
1.9 KiB
RPMSpec

#
# spec file for package helmfile
#
# Copyright (c) 2020 SUSE LLC
# 2020 Manfred Hollstein <manfred.h@gmx.net>
#
# 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 https://bugs.opensuse.org/
#
%define git_commit 563fce4adf7abf759ec31b3971d1195704621052
Name: helmfile
Version: 0.130.3
Release: 0
Summary: Deploy Kubernetes Helm Charts
License: MIT
Group: Development/Languages/Other
URL: https://github.com/roboll/helmfile
Source: %{name}-%{version}.tar.gz
Source1: vendor.tar.gz
Requires: helm
BuildRequires: golang-packaging
BuildRequires: xz
BuildRequires: golang(API) >= 1.14
%{go_nostrip}
%{go_provides}
%description
Helmfile is a declarative spec for deploying helm charts. It lets you...
* Keep a directory of chart value files and maintain changes in version control.
* Apply CI/CD to configuration changes.
* Periodically sync to avoid skew in environments.
To avoid upgrades for each iteration of helm, the helmfile executable
delegates to helm - as a result, helm must be installed.
%prep
%setup -qa1
%build
go build -mod=vendor -buildmode=pie
%install
make TAG=v%{version} install
mkdir -p %{buildroot}%{_bindir}
install -m755 ${HOME}/go/bin/helmfile %{buildroot}/%{_bindir}/helmfile
%files
%doc README.md
%license LICENSE
%{_bindir}/helmfile
%changelog